├── .github └── workflows │ └── push.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── __mocks__ └── react-native.ts ├── package.json ├── src ├── attribute-hooks.ts ├── attribute-sets.ts ├── color-scheme.ts ├── container-dimensions.tsx ├── css-to-react-native.d.ts ├── debounce.ts ├── index.ts ├── make-styles.tsx ├── prop-sets.ts ├── theme.tsx └── window-dimensions.ts ├── tests ├── basic.test.tsx ├── container-queries.test.tsx ├── hooks.test.tsx ├── media-queries.test.tsx ├── test-helper.tsx └── typings.test.tsx ├── tsconfig.json └── yarn.lock /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | .DS_Store 4 | dist 5 | type-explorations.ts 6 | coverage -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | yarn-error.log 2 | node_modules 3 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/__mocks__/react-native.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/package.json -------------------------------------------------------------------------------- /src/attribute-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/attribute-hooks.ts -------------------------------------------------------------------------------- /src/attribute-sets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/attribute-sets.ts -------------------------------------------------------------------------------- /src/color-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/color-scheme.ts -------------------------------------------------------------------------------- /src/container-dimensions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/container-dimensions.tsx -------------------------------------------------------------------------------- /src/css-to-react-native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/css-to-react-native.d.ts -------------------------------------------------------------------------------- /src/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/debounce.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/make-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/make-styles.tsx -------------------------------------------------------------------------------- /src/prop-sets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/prop-sets.ts -------------------------------------------------------------------------------- /src/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/theme.tsx -------------------------------------------------------------------------------- /src/window-dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/src/window-dimensions.ts -------------------------------------------------------------------------------- /tests/basic.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tests/basic.test.tsx -------------------------------------------------------------------------------- /tests/container-queries.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tests/container-queries.test.tsx -------------------------------------------------------------------------------- /tests/hooks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tests/hooks.test.tsx -------------------------------------------------------------------------------- /tests/media-queries.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tests/media-queries.test.tsx -------------------------------------------------------------------------------- /tests/test-helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tests/test-helper.tsx -------------------------------------------------------------------------------- /tests/typings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tests/typings.test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLoh/styled-native-components/HEAD/yarn.lock --------------------------------------------------------------------------------