mirror of
https://github.com/zhigang1992/react-native-gifted-chat.git
synced 2026-04-26 13:34:55 +08:00
19 lines
475 B
JavaScript
19 lines
475 B
JavaScript
/* eslint jsx-a11y/accessible-emoji: 0 */
|
|
import React from 'react';
|
|
import { Text } from 'react-native';
|
|
import NavBar, { NavTitle, NavButton } from 'react-native-nav';
|
|
import app from './app.json';
|
|
|
|
export default function NavBarCustom() {
|
|
return (
|
|
<NavBar>
|
|
<NavButton />
|
|
<NavTitle>
|
|
💬 Gifted Chat{'\n'}
|
|
<Text style={{ fontSize: 10, color: '#aaa' }}>({app.expo.version})</Text>
|
|
</NavTitle>
|
|
<NavButton />
|
|
</NavBar>
|
|
);
|
|
}
|