about summary refs log tree commit diff
path: root/src/view/screens/Menu.tsx
blob: 8cf93676eaaae5ea63b779859de0ffb20a6d7346 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react'
import {Shell} from '../shell'
import {ScrollView, Text, View} from 'react-native'
import type {RootTabsScreenProps} from '../routes/types'

export const Menu = (_props: RootTabsScreenProps<'Menu'>) => {
  return (
    <Shell>
      <ScrollView contentInsetAdjustmentBehavior="automatic">
        <View style={{justifyContent: 'center', alignItems: 'center'}}>
          <Text style={{fontSize: 20, fontWeight: 'bold'}}>Menu</Text>
        </View>
      </ScrollView>
    </Shell>
  )
}