zhouzhongyuan / qa

Questions recods
MIT License
5 stars 1 forks source link

Markdown #77

Open zhouzhongyuan opened 6 years ago

zhouzhongyuan commented 6 years ago

.

zhouzhongyuan commented 6 years ago

GFM(GitHub Flavored Markdown)

Image size

<img src="https://avatars1.githubusercontent.com/u/717817?v=3&s=88" width="400" />

效果 参考

zhouzhongyuan commented 6 years ago
Simple code ```javascript class RecentChatsScreen extends React.Component { render() { return List of recent chats } } class AllContactsScreen extends React.Component { render() { return List of all contacts } } const MainScreenNavigator = TabNavigator({ Recent: {screen: RecentChatsScreen}, All: {screen: AllContactsScreen}, }, { tabBarPosition: 'bottom', }); ```