Reputation: 7292
If you create a React Native <Button>
, it renders as a UIButton in iOS and an android.widget.Button in android. This means that it looks different on different platforms.
What about Pressable
s? What is the simplest way to create an iOS button on iOS and an Android button on Android without resorting to a 3rd partly npm library?
Upvotes: 1
Views: 217