How to use the react-native-ui-lib.Typography.text60 function in react-native-ui-lib

To help you get started, we’ve selected a few react-native-ui-lib examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wix / react-native-ui-lib / demo / src / screens / componentScreens / InputsScreen.js View on Github external
);
  }
}

const styles = StyleSheet.create({
  container: {
    flexDirection: 'column',
    justifyContent: 'flex-start',
    padding: 25
  },
  title: {
    ...Typography.text20
  },
  header: {
    ...Typography.text60,
    marginVertical: 20
  }
});
github wix / react-native-ui-lib / demo / src / screens / styleScreens / ColorsScreen.js View on Github external
{_.map(baseColors, (baseColor) => {
            const baseColorTints = _.pickBy(Colors, (color, key) => key.includes(baseColor));
            return (
github wix / react-native-ui-lib / demo / src / screens / componentScreens / ButtonsScreen.js View on Github external
<button label="close" size="small">
      
    
  );
};

const styles = StyleSheet.create({
  container: {
    alignItems: 'center',
    padding: 25,
  },
  title: {
    ...Typography.text20,
  },
  header: {
    ...Typography.text60,
    marginVertical: 20,
  },
});
</button>
github growingio / ReactNativeDemo / RNHelloWorld / UIElementsTest / TextInputs.js View on Github external
);
    }
}

const styles = StyleSheet.create({
    container: {
        flexDirection: 'column',
        justifyContent: 'flex-start',
        padding: 25,
    },
    title: {
        ...Typography.text20,
    },
    header: {
        ...Typography.text60,
        marginVertical: 20,
    },
});
github wix / react-native-ui-lib / demo / src / screens / componentScreens / MaskedInputScreen.js View on Github external
);
  }
}

const styles = StyleSheet.create({
  container: {
    flexDirection: 'column',
    justifyContent: 'flex-start',
    padding: 25,
  },
  title: {
    ...Typography.text20,
  },
  header: {
    ...Typography.text60,
    marginVertical: 20,
  },
});
github wix / react-native-ui-lib / demo / src / screens / componentScreens / TagsInputScreen.js View on Github external
containerStyle={{marginBottom: 25}}
            placeholder="with disableTagAdding disableTagRemoval"
            tags={this.state.tags3}
            disableTagRemoval
            disableTagAdding
          /&gt;

           (this.customTagsInput = r)}
            containerStyle={{marginBottom: 25}}
            placeholder="With custom tags"
            tags={this.state.tags}
            renderTag={this.renderCustomTag}
            onCreateTag={value =&gt; ({label: value})}
            onTagPress={this.onTagPress}
            inputStyle={{...Typography.text60, color: Colors.blue30}}
          /&gt;
        
      
    );
  }
}
github wix / react-native-ui-lib / demo / src / screens / MainScreen.js View on Github external
},
  row: {
    height: 56,
    justifyContent: 'center',
  },
  separator: {
    borderBottomWidth: 1,
    borderBottomColor: Colors.dark70,
  },
  sectionContainer: {
    backgroundColor: Colors.dark20,
    paddingVertical: 4,
    paddingLeft: 12,
  },
  sectionText: {
    ...Typography.text60,
    color: Colors.white,
  },
});
github wix / react-native-ui-lib / demo / src / screens / componentScreens / FloatingButtonScreen.js View on Github external
flexDirection: 'row', 
    justifyContent: 'center', 
    margin: 20
  },
  triggerButton: {
    backgroundColor: Colors.dark10,
    width: 100,
    height: 30,
    borderWidth: 1,
    borderRadius: 4,
    justifyContent: 'center',
    alignItems: 'center'
  },
  triggerButtonText: {
    color: Colors.white,
    ...Typography.text60
  }
});