廓形仪rn版本-技术调研
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
312 B

  1. import { Stack } from 'expo-router';
  2. export default function Layout() {
  3. return (
  4. <Stack
  5. screenOptions={{
  6. headerShown: true,
  7. }}>
  8. <Stack.Screen name="index" options={{title: '测量'}}/>
  9. <Stack.Screen name="save" options={{title: '测量参数设置'}}/>
  10. </Stack>
  11. );
  12. }