{"id":29543146,"url":"https://github.com/ahmedbna/ui","last_synced_at":"2025-07-17T13:03:52.215Z","repository":{"id":302986600,"uuid":"1013990059","full_name":"ahmedbna/ui","owner":"ahmedbna","description":"BNA UI - Expo, React Native components library","archived":false,"fork":false,"pushed_at":"2025-07-14T16:07:34.000Z","size":1324,"stargazers_count":165,"open_issues_count":1,"forks_count":12,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-14T18:26:05.763Z","etag":null,"topics":["expo","react-native"],"latest_commit_sha":null,"homepage":"https://ui.ahmedbna.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ahmedbna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-07-04T20:37:11.000Z","updated_at":"2025-07-14T17:28:48.000Z","dependencies_parsed_at":"2025-07-05T03:32:46.533Z","dependency_job_id":null,"html_url":"https://github.com/ahmedbna/ui","commit_stats":null,"previous_names":["ahmedbna/ui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ahmedbna/ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedbna%2Fui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedbna%2Fui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedbna%2Fui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedbna%2Fui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahmedbna","download_url":"https://codeload.github.com/ahmedbna/ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedbna%2Fui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265556388,"owners_count":23787555,"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":["expo","react-native"],"created_at":"2025-07-17T13:02:59.337Z","updated_at":"2025-07-17T13:03:52.198Z","avatar_url":"https://github.com/ahmedbna.png","language":"TypeScript","funding_links":[],"categories":["Stale"],"sub_categories":["React Native \u0026 Expo"],"readme":"# BNA UI 🚀\n\n![BNA UI Header](https://cdn.jsdelivr.net/gh/ahmedbna/bna-ui-demo/bna-ui-header.png)\n\n**B**uild **N**ative **A**pps - A powerful CLI for creating Expo React Native applications with a beautiful UI component library.\n\n## ✨ Features\n\n- 🎨 **Beautiful UI Components** - Pre-built, customizable components with modern design\n- 🌙 **Theme Support** - Built-in light/dark mode with seamless transitions\n- 📱 **Expo Router Ready** - Complete navigation setup with tab and stack navigation\n- 🎯 **TypeScript First** - Full TypeScript support with excellent IntelliSense\n- 📦 **Flexible Package Manager** - Works with npm, yarn, or pnpm\n- 🚀 **Zero Configuration** - Get started in seconds with sensible defaults\n- 🔧 **Highly Customizable** - Easily customize colors, spacing, and components\n- 📲 **Cross-Platform** - Perfect compatibility across iOS and Android\n- ⚡ **Performance Optimized** - Lightweight and fast components\n- 🎭 **Animation Ready** - Smooth animations with React Native Reanimated\n\n## 📦 Installation\n\n```bash\n# The fastest way to set up BNA UI in your Expo project:\nnpx bna-ui init\n\n# Navigate to your Expo project\ncd bna-app\n\n# Start adding components\nnpx bna-ui add button\nnpx bna-ui add card\nnpx bna-ui add input\n```\n\n## 🎯 Usage Example\n\n```tsx\nimport React from 'react';\nimport { Button } from '@/components/ui/button';\nimport { Card } from '@/components/ui/card';\nimport { Input } from '@/components/ui/input';\nimport { View } from '@/components/ui/view';\n\nexport default function HomeScreen() {\n  return (\n    \u003cView style={{ flex: 1, padding: 20 }}\u003e\n      \u003cCard\u003e\n        \u003cInput placeholder='Enter your email' keyboardType='email-address' /\u003e\n        \u003cButton\n          variant='success'\n          onPress={() =\u003e console.log('Button pressed!')}\n        \u003e\n          Get Started\n        \u003c/Button\u003e\n      \u003c/Card\u003e\n    \u003c/View\u003e\n  );\n}\n```\n\n## 🌙 Theme Configuration\n\nBNA UI comes with a flexible theming system:\n\n```tsx\n// theme/colors.ts\nexport const lightTheme = {\n  colors: {\n    background: '#FFFFFF',\n    foreground: '#000000',\n    card: '#F2F2F7',\n    cardForeground: '#000000',\n    popover: '#F2F2F7',\n    popoverForeground: '#000000',\n    primary: '#18181b',\n    primaryForeground: '#FFFFFF',\n    secondary: '#F2F2F7',\n    secondaryForeground: '#18181b',\n    muted: '#78788033',\n    mutedForeground: '#71717a',\n    // ... more colors\n  },\n};\n\nexport const darkTheme = {\n  colors: {\n    background: '#000000',\n    foreground: '#FFFFFF',\n    card: '#1C1C1E',\n    cardForeground: '#FFFFFF',\n    popover: '#18181b',\n    popoverForeground: '#FFFFFF',\n    primary: '#e4e4e7',\n    primaryForeground: '#18181b',\n    secondary: '#1C1C1E',\n    secondaryForeground: '#FFFFFF',\n    muted: '#78788033',\n    mutedForeground: '#a1a1aa',\n    // ... more colors\n  },\n};\n```\n\n## 📱 Platform Support\n\n- ✅ **iOS** - Full native iOS support\n- ✅ **Android** - Full native Android support\n- ✅ **Web** - Responsive web support\n- ✅ **Expo Go** - Development with Expo Go\n- ✅ **EAS Build** - Production builds with EAS\n\n## 🛠️ Development\n\n```bash\n# Clone the repository\ngit clone https://github.com/ahmedbna/bna-ui.git\ncd bna-ui\n\n# Install dependencies\nnpm install\n\n# Build for production\nnpm run build\n```\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🔗 Links\n\n- 📚 **Documentation**: [https://ui.ahmedbna.com](https://ui.ahmedbna.com)\n- 🐛 **Bug Reports**: [GitHub Issues](https://github.com/ahmedbna/ui/issues)\n- 💬 **Linkedin**: [@ahmedbna](https://www.linkedin.com/in/ahmedbna/)\n- 𝕏 **X**: [@ahmedbnaa](https://x.com/ahmedbnaa)\n\n## ⭐ Support\n\nIf you find BNA UI helpful, please consider giving it a star on GitHub! It helps us a lot.\n\n[![GitHub stars](https://img.shields.io/github/stars/ahmedbna/ui?style=social)](https://github.com/ahmedbna/ui)\n\n## 📈 Stats\n\n![GitHub package.json version](https://img.shields.io/github/package-json/v/ahmedbna/ui)\n![npm](https://img.shields.io/npm/v/bna-ui)\n![npm](https://img.shields.io/npm/dm/bna-ui)\n![GitHub](https://img.shields.io/github/license/ahmedbna/ui)\n\n---\n\nMade with ❤️ by [Ahmed BNA](https://github.com/ahmedbna)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmedbna%2Fui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmedbna%2Fui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmedbna%2Fui/lists"}