{"id":25697967,"url":"https://github.com/qonsoll/react-native-design","last_synced_at":"2026-04-16T10:32:06.025Z","repository":{"id":106322438,"uuid":"342283081","full_name":"qonsoll/react-native-design","owner":"qonsoll","description":"Powerful 💪 components library for react-native apps.","archived":false,"fork":false,"pushed_at":"2021-11-12T13:25:19.000Z","size":341,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-22T22:27:48.922Z","etag":null,"topics":["bootstrap","col","react-components","react-native","react-native-component","react-native-elements","react-native-library","row","theme"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qonsoll.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-25T15:07:30.000Z","updated_at":"2021-11-12T13:25:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"85732c09-7a88-4ca9-a826-f16c4436ce63","html_url":"https://github.com/qonsoll/react-native-design","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qonsoll/react-native-design","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qonsoll%2Freact-native-design","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qonsoll%2Freact-native-design/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qonsoll%2Freact-native-design/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qonsoll%2Freact-native-design/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qonsoll","download_url":"https://codeload.github.com/qonsoll/react-native-design/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qonsoll%2Freact-native-design/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31882053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T09:23:21.276Z","status":"ssl_error","status_checked_at":"2026-04-16T09:23:15.028Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","col","react-components","react-native","react-native-component","react-native-elements","react-native-library","row","theme"],"created_at":"2025-02-25T02:36:48.377Z","updated_at":"2026-04-16T10:32:06.005Z","avatar_url":"https://github.com/qonsoll.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### About @qonsoll/react-native-design\nThis is components library with possibility to configure everything you need. ⚡️⚡️⚡️ Using it you can extend or/and override any part of any element inside the lib (borders (radius, colors, width), font families for titles or body text, font sizes, line heights, letter spacings, color scheme 🎨 etc. (probably all properties that you can imagine and available in react-native apps)). Also, you can use bootstrap like grid (Row, Col with embedded flex configurations).\n\n### How to install?\n\n1. Run in terminal:\n`npm install @qonsoll/react-native-design`\nor\n`yarn add @qonsoll/react-native-design`\n\n2. Install additional packages:\n`npm install --save @react-native-community/checkbox react-native-date-picker react-native-image-picker react-native-svg react-native-svg-transformer react-native-vector-icons`\nor\n`yarn add @react-native-community/checkbox react-native-date-picker react-native-image-picker react-native-svg react-native-svg-transformer react-native-vector-icons`\n\n3. Install pods for iOS application: `cd ios \u0026\u0026 pod install \u0026\u0026 cd ..`\n\n4. If you want to use default SVG icons, change your metro.config.js file:\n```javascript\nconst {getDefaultConfig} = require('metro-config');\n```\n```javascript\nmodule.exports = {\n  transformer: {\n    getTransformOptions: async () =\u003e ({\n      transform: {\n        experimentalImportSupport: false,\n        inlineRequires: false,\n      },\n    }),\n  },\n};\n```\n```javascript\nmodule.exports = (async () =\u003e {\n  const {\n    resolver: {sourceExts, assetExts},\n  } = await getDefaultConfig();\n\n  return {\n    transformer: {\n      babelTransformerPath: require.resolve('react-native-svg-transformer'),\n    },\n    resolver: {\n      assetExts: assetExts.filter((ext) =\u003e ext !== 'svg'),\n      sourceExts: [...sourceExts, 'svg'],\n    },\n  };\n})();\n```\n5. Well done! ✅ Now you can setup ThemeProvider, configure Theme and use components.\n\n### How to use?\n1. Import ThemeProvider in your App.js file:\n`import {ThemeProvider} from '@qonsoll/react-native-design'`\n\n2. Wrap your app content:\n```html\n\u003cThemeProvider theme={{}}\u003e\n\t\u003cApp /\u003e\n\u003c/ThemeProvider\u003e\n```\n3. Success! 👍 Now all lib elements should have access to the default theme.\n\n### Theme (design-tokens)\nHere is default theme state:\n```javascript\nconst Theme = {\n  CORE: {\n    BORDER_RADIUSES: {},\n    BORDER_WIDTHS: {},\n    COLORS: {},\n    FONT_FAMILIES: {},\n    FONT_SIZES: {},\n    FONT_WEIGHTS: {},\n    LETTER_SPACINGS: {},\n    LINE_HEIGHTS: {},\n    SHADOWS: {},\n    ICON_SIZES: {}\n  },\n  EXTENSIONS: {\n    CORNERS: {}\n  },\n  components: {\n    BUTTONS: {},\n    SWITCHES: {},\n    CARDS: {},\n    ITEMS: {},\n    BUTTON_ITEMS: {},\n    ALERTS: {},\n    AVATARS: {},\n    BADGES: {},\n    CHECKBOXES: {},\n    COLLAPSES: {},\n    TOGGLES: {},\n    STATUSES: {}\n  }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqonsoll%2Freact-native-design","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqonsoll%2Freact-native-design","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqonsoll%2Freact-native-design/lists"}