{"id":15294021,"url":"https://github.com/red-shank/redshank","last_synced_at":"2025-04-13T14:11:44.412Z","repository":{"id":63154789,"uuid":"550439204","full_name":"red-shank/redshank","owner":"red-shank","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-28T01:23:26.000Z","size":36864,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-10T09:05:16.123Z","etag":null,"topics":["react-native","ui","ui-components"],"latest_commit_sha":null,"homepage":"https://www.redshank.app","language":"TypeScript","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/red-shank.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":"2022-10-12T19:13:53.000Z","updated_at":"2024-12-28T01:23:30.000Z","dependencies_parsed_at":"2025-02-23T14:42:26.128Z","dependency_job_id":null,"html_url":"https://github.com/red-shank/redshank","commit_stats":{"total_commits":77,"total_committers":4,"mean_commits":19.25,"dds":0.4415584415584416,"last_synced_commit":"68f56cbe0b2d2e2361ed7e861f54024e5daabfd2"},"previous_names":["beauty-design/react-native-beauty-design"],"tags_count":68,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red-shank%2Fredshank","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red-shank%2Fredshank/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red-shank%2Fredshank/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red-shank%2Fredshank/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/red-shank","download_url":"https://codeload.github.com/red-shank/redshank/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248724629,"owners_count":21151561,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["react-native","ui","ui-components"],"created_at":"2024-09-30T16:54:48.605Z","updated_at":"2025-04-13T14:11:44.405Z","avatar_url":"https://github.com/red-shank.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @redshank/native\n\nThe objective of this project is to create a complete and advanced framework such as Antd for the web, I want to be able to offer a set of reusable components that are native and beautiful in such a way that we all love to use it in our projects\n\n# Documentation\n\n[Documentation](https://www.redshank.app) under construction, launch scheduled for November 30, 2022.\n\n## Installation\n\n```sh\nnpm install @redshank/native\n```\n\n# Usage\n\nMake sure you have react-native\u003e=0.65.0\n\n## Documentation\n\nDocumentation [here](https://redshank.app)\n\n![img.png](img.png)\n\n## Code Example\n\n```js\nimport {\n  Button,\n  Space,\n  Text,\n  ThemeProvider,\n} from '@redshank/native';\n\nexport default function App() {\n  // automic dark mode\n  return (\n    \u003cThemeProvider\u003e\n      \u003cScrollView contentContainerStyle={styles.view}\u003e\n        \u003cView style={styles.container}\u003e\n          \u003cView\u003e\n            \u003cText\u003eButtons\u003c/Text\u003e\n            \u003cText level={4}\u003eDefault buttons\u003c/Text\u003e\n            \u003cSpace justify=\"center\"\u003e\n              \u003cButton\u003ePrimary\u003c/Button\u003e\n              \u003cButton color=\"success\"\u003eSuccess\u003c/Button\u003e\n              \u003cButton type=\"link\" color=\"warning\"\u003e\n                Warning\n              \u003c/Button\u003e\n              \u003cButton type=\"outline\" color=\"error\"\u003e\n                Error\n              \u003c/Button\u003e\n            \u003c/Space\u003e\n          \u003c/View\u003e\n          \u003cView\u003e\n            \u003cText level={4}\u003eCircle buttons\u003c/Text\u003e\n            \u003cSpace justify=\"center\"\u003e\n              \u003cButton shape=\"circle\"\u003ePrimary\u003c/Button\u003e\n              \u003cButton shape=\"circle\" color=\"success\"\u003e\n                Success\n              \u003c/Button\u003e\n              \u003cButton type=\"link\" shape=\"circle\" color=\"warning\"\u003e\n                Warning\n              \u003c/Button\u003e\n              \u003cButton type=\"outline\" shape=\"circle\" color=\"error\"\u003e\n                Error\n              \u003c/Button\u003e\n            \u003c/Space\u003e\n          \u003c/View\u003e\n          \u003cView\u003e\n            \u003cText level={4}\u003eCustom color buttons\u003c/Text\u003e\n            \u003cSpace justify=\"center\"\u003e\n              \u003cButton color=\"magenta\"\u003eMagenta\u003c/Button\u003e\n              \u003cButton color=\"orangered\"\u003eOrangered\u003c/Button\u003e\n              \u003cButton color=\"green\"\u003eGreen\u003c/Button\u003e\n              \u003cButton color=\"purple\"\u003ePurple\u003c/Button\u003e\n            \u003c/Space\u003e\n          \u003c/View\u003e\n        \u003c/View\u003e\n      \u003c/ScrollView\u003e\n    \u003c/ThemeProvider\u003e\n  );\n}\n```\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fred-shank%2Fredshank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fred-shank%2Fredshank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fred-shank%2Fredshank/lists"}