{"id":13376199,"url":"https://github.com/panza-org/panza","last_synced_at":"2025-07-31T02:08:55.928Z","repository":{"id":8910345,"uuid":"60202771","full_name":"panza-org/panza","owner":"panza-org","description":"react-native stateless functional UI components to get you up and running quickly","archived":false,"fork":false,"pushed_at":"2022-12-10T22:53:21.000Z","size":5731,"stargazers_count":257,"open_issues_count":31,"forks_count":14,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-21T18:01:24.169Z","etag":null,"topics":[],"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/panza-org.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}},"created_at":"2016-06-01T18:53:25.000Z","updated_at":"2024-04-15T20:35:59.000Z","dependencies_parsed_at":"2023-01-13T15:04:07.650Z","dependency_job_id":null,"html_url":"https://github.com/panza-org/panza","commit_stats":null,"previous_names":["bmcmahen/panza"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panza-org%2Fpanza","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panza-org%2Fpanza/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panza-org%2Fpanza/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panza-org%2Fpanza/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/panza-org","download_url":"https://codeload.github.com/panza-org/panza/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248131637,"owners_count":21052889,"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":[],"created_at":"2024-07-30T05:02:33.642Z","updated_at":"2025-04-10T00:19:45.186Z","avatar_url":"https://github.com/panza-org.png","language":"JavaScript","funding_links":[],"categories":["Libraries","React Native","Mobile UI Components"],"sub_categories":["Other Platforms","Related community list","React Native"],"readme":"# panza\nPanza is a collection of ui-components for react-native modelled after iOS.\n\nThis library is currently undergoing a rewrite and will be updated soon along with new documentation.\n\n\u003cp\u003e\n\u003cimg src='images/panza-ios-large.png' width='375px' /\u003e\n\u003cimg src='images/panza-android-large.png' width='360px' /\u003e\n\u003c/p\u003e\n\n## Getting Started\n```\n$ npm i panza --save\n$ npm i react-native-vector-icons --save\n$ rnpm link react-native-vector-icons\n```\n\n## Components\n\n### Inputs\n* [InputRow](documentation/InputRow.md)\n* [InputGroup](documentation/InputGroup.md)\n* [InputHelpText](documentation/InputHelpText.md)\n* [InputToggle](documentation/InputToggle.md)\n* [InputPicker](documentation/InputPicker.md)\n* [InputDatePicker](documentation/InputDatePicker.md)\n* [RemovableInput](documentation/RemovableInput.md)\n* [AddRow](documentation/AddRow.md)\n* [TouchableInput](documentation/TouchableInput.md)\n\n### Rows\n* [TouchableRow](documentation/TouchableRow.md)\n* [RowSeparator](documentation/RowSeparator.md)\n* [RowImage](documentation/RowImage.md)\n* [SectionHeader](documentation/SectionHeader.md)\n\n### Navigation\n* [NavBar](documentation/NavBar.md)\n* [NavTitle](documentation/NavTitle.md)\n* [NavTouchableIcon](documentation/NavTouchableIcon.md)\n* [NavTouchableText](documentation/NavTouchableText.md)\n* [SubNav](documentation/SubNav.md)\n\n### Pages\n* [ErrorPage](documentation/ErrorPage.md)\n* [LoadingPage](documentation/LoadingPage.md)\n\n### Buttons\n* [Button](documentation/Button.md)\n* [PrimaryButton](documentation/PrimaryButton.md)\n* [WarningButton](documentation/WarningButton.md)\n* [ErrorButton](documentation/ErrorButton.md)\n* [SuccessButton](documentation/SuccessButton.md)\n* [NakedButton](documentation/NakedButton.md)\n* [VerticalButtonGroup](documentation/VerticalButtonGroup.md)\n\n### Text\n* [PrimaryText](documentation/PrimaryText.md)\n* [SecondaryText](documentation/SecondaryText.md)\n* [LargeText](documentation/LargeText.md)\n* [SubtitleText](documentation/SubtitleText.md)\n* [PrimaryTextInput](documentation/PrimaryTextInput.md)\n* [SecondaryTextInput](documentation/SecondaryTextInput.md)\n\n### Images\n* [FadeImage](documentation/FadeImage.md)\n\n### Icons\n* [Icon](documentation/Icon.md)\n* TouchableIcon\n* PlusIcon\n* ArrowRightIcon\n* CloseIcon\n* BackIcon\n* SearchIcon\n* MoreIcon\n\n### Base Components\n* [Base](documentation/Base.md)\n* [TextBase](documentation/TextBase.md)\n\n\n## Customize\n\nYou can override parts of the global configuration to provide custom colours, font sizes, scales, etc.\n\n```javascript\nimport { config } from 'panza'\n\nclass App extends React.Component {\n\n  static childContextTypes = {\n    panza: PropTypes.object\n  }\n\n  getChildContext() {\n    panza: this.state.styles\n  }\n\n  state = {\n    styles: {\n      colors: Object.assign(\n        {},\n        config.colors,\n        { primary: config.colors.red } // change the primary color from blue to red\n      )\n    }\n  }\n\n  // ... render your app\n}\n```\n\n## Example\n\nYou can install the example application contained within this repository.\n\n```\n$ git clone https://github.com/bmcmahen/panza.git\n$ cd panza \u0026\u0026 npm install\n$ react-native run-ios\n$ react-native run-android\n```\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanza-org%2Fpanza","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpanza-org%2Fpanza","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanza-org%2Fpanza/lists"}