您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Layout.jsx 308B

123456789101112131415
  1. import React from "react";
  2. import { View } from "react-native";
  3. import { useTheme } from "@styles";
  4. const Layout = ({ children }) => {
  5. const { colors } = useTheme();
  6. return (
  7. <View style={{ flex: 1, backgroundColor: colors.background }}>
  8. {children}
  9. </View>
  10. );
  11. };
  12. export default Layout