-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More built-in components and features? #327
Comments
I agree that the default screens on project inits could be more developer friendly. If react-navigation is the de-facto navigation solution, then we should see it used when a new project is initialized. |
Thank you, Yes we need a more developer-friendly way to develop! |
Additional Feature Requests:
|
Hey - thanks for the feedback but this is directly against the direction the repo has been going with the Lean Core effort. And even lately, there has been discussions to detach "core" react-native packages (see here), so I'm sorry but I don't see your list of requested components making it into core. |
To add to what @kelset mentioned, there are many React Native UI toolkits in the community that include these kinds of things. We'd like to continue fostering development of these toolkits, which requires enabling competition. If we try to include these things in core, we'd be hurting the opportunities of these other toolkits, leading to an actually worse experience for the community. |
What you request is already avaiable with Expo. I suggest you take a look at the Expo "bare" workflow. |
Introduction
We know make components in React-Native is very easy, but if React-Native provides more common components, that is more convenient for developers!
Details
The most commonly used components
View
component with aflexGrow
style;View
component with awidth
andheight
style, used for custom spacing in flex;View
component with awidth
orheight
style;Modal
, but what if I want to make it more easily? What if I want to make multiple dialogs at the same time? Should I write a lot ofModal
component on every my screen?About React Navigation
When I create a new project, the first thing I should thinking is that HOW to structure my app, Tab Navigator or Stack Navigator?
For now, the structure of my app looks like below:
And once I login succeeds, I push to HomepageScreen. Could we do something about this? PLEASE SAVE me from this!
Could we provide a way that sounds like
Scaffold
(Yes it came from Flutter), it can display the bottom bar, navigation bar even toolbar?And by the way, how can I clear all Previous Screen, and navigate to a new Screen?😂 Thank you very much!
Discussion points
React-Native is great and beautiful, but we need More Convenient ways to build applications.
The text was updated successfully, but these errors were encountered: