add ai and todo example templates for native frontends (#293)

This commit is contained in:
Aman Varshney
2025-06-02 16:30:53 +05:30
committed by GitHub
parent 9dbeea8983
commit 7851d0636d
42 changed files with 1606 additions and 536 deletions

View File

@@ -1,7 +1,7 @@
import { StyleSheet } from 'react-native-unistyles';
import { StyleSheet } from "react-native-unistyles";
import { breakpoints } from './breakpoints';
import { lightTheme, darkTheme } from './theme';
import { breakpoints } from "./breakpoints";
import { darkTheme, lightTheme } from "./theme";
type AppBreakpoints = typeof breakpoints;
@@ -10,7 +10,7 @@ type AppThemes = {
dark: typeof darkTheme;
};
declare module 'react-native-unistyles' {
declare module "react-native-unistyles" {
export interface UnistylesBreakpoints extends AppBreakpoints {}
export interface UnistylesThemes extends AppThemes {}
}