Answers for "react native add icon to drawer.screen"

6

disable inputetext in react native

<TextInput editable={false} selectTextOnFocus={false} />
Posted by: Guest on May-08-2020
4

react native add custom fonts

// create a folder in your root directory /assets/fonts/ 
// paste the custom fonts you want used in that folder
// create a file in the root called react-native.config.js
// Then add the following:

module.exports = {
  project: {
    ios: {},
    android: {},
  },
  assets: ['./assets/fonts'],
};

// then run 

react-native link
Posted by: Guest on April-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language