flutter_platform_widgets VS react-native-screens

Compare flutter_platform_widgets vs react-native-screens and see what are their differences.

flutter_platform_widgets

Target the specific design of Material for Android and Cupertino for iOS widgets through a common set of Platform aware widgets (by stryder-dev)

react-native-screens

Native navigation primitives for your React Native app. (by software-mansion)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
flutter_platform_widgets react-native-screens
4 9
1,534 2,837
0.2% 1.3%
8.0 8.9
3 months ago 2 days ago
Dart TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

flutter_platform_widgets

Posts with mentions or reviews of flutter_platform_widgets. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-06.
  • The different strategies to building a cross-platform app
    36 projects | dev.to | 6 Oct 2022
    Full control of rendering. Optimizes for consistent UI cross-platform, at expense of platform-specific capabilities and look-and-feel (that users on each platform might be more familiar with). But has Cupertino widgets for iOS look-and-feel, to alleviate that. (Android uses Material UI widgets). Could also use flutter_platform_widgets that automatically selects the UI widget's look-and-feel according to the mobile platform (iOS or Android).
  • Using Flutter to build a native-looking desktop app for macOS and Windows
    8 projects | news.ycombinator.com | 10 Nov 2021
    OP here!

    It wasn't that hard to handle the conditional logic for the UI components. It can also be encapsulated in a separate package, something that is already available for Flutter on mobile (iOS and Android UI): https://github.com/stryder-dev/flutter_platform_widgets

    I could also not strive to make it look native, but go with the default UI (Google's Material UI). As I explained in the post, I decided to take some extra steps and use the two UI packages (macos_ui and fluent_ui), to make it adapt to the platform.

    Please bear in mind that I am a single developer, with ~1 year of working with Flutter and Dart, and my main background is web development. I think that teams with more members and experience can certainly do this for even larger in scope apps.

  • Do all Flutter Apps look similar?
    1 project | /r/FlutterDev | 21 Apr 2021

react-native-screens

Posts with mentions or reviews of react-native-screens. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-06.
  • Updated from 0.68 to 0.71.11 : getting random crashs without error logs on Android
    1 project | /r/reactnative | 17 Jun 2023
  • The different strategies to building a cross-platform app
    36 projects | dev.to | 6 Oct 2022
    react-native-url-router (a single navigation system, using React Router + react-native-screens for stacks + react-native-pager-viewfor tabs).
  • Is it bad to replace default navigation header with a top aligned view for one screen?
    1 project | /r/reactnative | 31 Mar 2022
    Sure. Here is an example of what I'm talking about on github.
  • App crashes everytime I open it
    1 project | /r/newtonco | 25 Oct 2021
    FATAL EXCEPTION: main Process: web.tradenewton.com, PID: 13063 java.lang.RuntimeException: Unable to start activity ComponentInfo{web.tradenewton.com/web.tradenewton.com.MainActivity}: androidx.fragment.app.Fragment$InstantiationException: Unable to instantiate fragment com.swmansion.rnscreens.ScreenStackFragment: calling Fragment constructor caused an exception at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3616) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3780) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:85) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2251) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:233) at android.app.ActivityThread.main(ActivityThread.java:8063) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:631) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:978) Caused by: androidx.fragment.app.Fragment$InstantiationException: Unable to instantiate fragment com.swmansion.rnscreens.ScreenStackFragment: calling Fragment constructor caused an exception at androidx.fragment.app.Fragment.instantiate(Fragment.java:631) at androidx.fragment.app.FragmentContainer.instantiate(FragmentContainer.java:57) at androidx.fragment.app.FragmentManager$3.instantiate(FragmentManager.java:483) at androidx.fragment.app.FragmentStateManager.(FragmentStateManager.java:85) at androidx.fragment.app.FragmentManager.restoreSaveState(FragmentManager.java:2728) at androidx.fragment.app.FragmentController.restoreSaveState(FragmentController.java:198) at androidx.fragment.app.FragmentActivity$2.onContextAvailable(FragmentActivity.java:149) at androidx.activity.contextaware.ContextAwareHelper.dispatchOnContextAvailable(ContextAwareHelper.java:99) at androidx.activity.ComponentActivity.onCreate(ComponentActivity.java:297) at androidx.fragment.app.FragmentActivity.onCreate(FragmentActivity.java:273) at androidx.appcompat.app.AppCompatActivity.onCreate(AppCompatActivity.java:115) at com.facebook.react.ReactActivity.onCreate(ReactActivity.java:44) at android.app.Activity.performCreate(Activity.java:8006) at android.app.Activity.performCreate(Activity.java:7990) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1329) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3589) ... 11 more Caused by: java.lang.reflect.InvocationTargetException at java.lang.reflect.Constructor.newInstance0(Native Method) at java.lang.reflect.Constructor.newInstance(Constructor.java:343) at androidx.fragment.app.Fragment.instantiate(Fragment.java:613) ... 26 more Caused by: java.lang.IllegalStateException: Screen fragments should never be restored. Follow instructions from https://github.com/software-mansion/react-native-screens/issues/17#issuecomment-424704067 to properly configure your main activity. at com.swmansion.rnscreens.ScreenFragment.(ScreenFragment.kt:41) at com.swmansion.rnscreens.ScreenStackFragment.(ScreenStackFragment.kt:30) ... 29 more
  • How can I achieve this animated header effect? I’m using react-navigation if that helps.
    3 projects | /r/reactnative | 13 Jun 2021
  • My react Native app keeps closing when I navigate back to it from another app
    1 project | /r/reactnative | 16 May 2021
    It´s very likely you are using react-native-screens and you forgot to updat the onCreate method. Just make sure you're onCreate method looks like this
  • React Navigation 6 (prerelease) is here
    2 projects | /r/reactnative | 15 Mar 2021
    Not yet, you can open an issue in react-native-screens repo and follow these issues: https://github.com/software-mansion/react-native-screens/issues/561 https://github.com/software-mansion/react-native-screens/issues/317
  • How to change screen background while in transition with react-navigation v5?
    1 project | /r/reactnative | 9 Feb 2021
  • Just published our second RN App to the App Store. React Native only gets better with practice.
    4 projects | /r/reactnative | 23 Dec 2020
    I LOVE the large title header behavior of the native-stack on iOS. I really wish the folks at RNav would implement something like that in a future release (I had rebuilt the large header from the ground up on our first app using Animated). As it stands, I am 90% sure I want to implement it on Words – but other features / fixes come first!

What are some alternatives?

When comparing flutter_platform_widgets and react-native-screens you can also consider the following projects:

styled_widget - Simplifying widget style in Flutter.

create-t3-turbo - Clean and simple starter repo using the T3 Stack along with Expo React Native

Flutter - Flutter makes it easy and fast to build beautiful apps for mobile and beyond

react-native-viewpager - React Native wrapper for the Android ViewPager and iOS UIPageViewController.

Flutter-Neumorphic - A complete, ready to use, Neumorphic ui kit for Flutter, 🕶️ dark mode compatible

react-native-collapsible-tab-view - A cross-platform Collapsible Tab View component for React Native

Windows UI Library - Windows UI Library: the latest Windows 10 native controls and Fluent styles for your applications

react-native-shared-group-preferences

react-native-web - Cross-platform React UI packages

react-native-iap - react-native native module for In App Purchase.

Skia - Skia is a complete 2D graphic library for drawing Text, Geometries, and Images.

hackerweb-native-2 - HackerWeb 2: A read-only Hacker News client.