React-Native typescript Android/iOS rules
interface
or type
aliases for component props and complex data structures.any
type unless absolutely necessary.UserProfile.tsx
).StyleSheet
or other appropriate styling approaches to keep styles organized.fetchUserData
, not getData
).foo
or bar
.React.memo
or useCallback
/useMemo
where appropriate to optimize performance.