{"id":22552912,"url":"https://github.com/oneananda/reactflow-reactnative-builder","last_synced_at":"2026-04-17T00:34:23.042Z","repository":{"id":266956464,"uuid":"899868131","full_name":"oneananda/reactflow-reactnative-builder","owner":"oneananda","description":"This project allows users to visually create UI components and generate React Native code in real-time, making mobile app development faster and more intuitive.","archived":false,"fork":false,"pushed_at":"2024-12-09T16:16:06.000Z","size":214,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-01T16:31:54.786Z","etag":null,"topics":["react","react-native"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/oneananda.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":"2024-12-07T08:20:56.000Z","updated_at":"2024-12-09T16:16:11.000Z","dependencies_parsed_at":"2024-12-07T09:20:02.673Z","dependency_job_id":"8c12b082-92ef-4c3a-9a02-48f7f071eaf6","html_url":"https://github.com/oneananda/reactflow-reactnative-builder","commit_stats":null,"previous_names":["oneananda/reactflow-reactnative-builder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/oneananda/reactflow-reactnative-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oneananda%2Freactflow-reactnative-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oneananda%2Freactflow-reactnative-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oneananda%2Freactflow-reactnative-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oneananda%2Freactflow-reactnative-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oneananda","download_url":"https://codeload.github.com/oneananda/reactflow-reactnative-builder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oneananda%2Freactflow-reactnative-builder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31910165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","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":["react","react-native"],"created_at":"2024-12-07T18:08:00.261Z","updated_at":"2026-04-17T00:34:23.024Z","avatar_url":"https://github.com/oneananda.png","language":"JavaScript","readme":"\n---\n\n# ReactFlow ReactNative Builder\n\n**ReactFlow ReactNative Builder** is a drag-and-drop tool for building React Native pages using ReactFlow. This project allows users to visually create UI components and generate React Native code in real-time, making mobile app development faster and more intuitive.\n\n---\n\n## Features\n\n- 🖱️ **Drag-and-Drop Interface**: Create UI layouts by dragging and dropping components.\n- ⚡ **React Native Code Generation**: Instantly generate React Native code for your designs.\n- 🌟 **Customizable Components**: Extendable to add your own components.\n- 💾 **Export Code**: Save generated code as a `.js` file for integration into your projects.\n- 📦 **Mobile-Ready**: Use the generated code with Expo or React Native CLI for rapid development.\n\n---\n\n## Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/oneananda/reactflow-reactnative-builder.git\n   cd reactflow-reactnative-builder\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Start the development server:\n   ```bash\n   npm start\n   ```\n\n4. Open your browser at [http://localhost:3000](http://localhost:3000).\n\n---\n\n## Usage\n\n1. **Drag Components**: Use the sidebar to drag components like `Text`, `Button`, and `View` onto the canvas.\n2. **Customize Properties**: Click on a component to modify its properties, such as text, color, or dimensions.\n3. **Generate Code**: Click the **Generate Code** button to see the corresponding React Native code.\n4. **Export Code**: Save the generated code as a `.js` file for further development.\n\n---\n\n## Example\n\nHere’s a sample of the generated code:\n\n```jsx\nimport React from 'react';\nimport { View, Text, Button } from 'react-native';\n\nconst GeneratedPage = () =\u003e {\n  return (\n    \u003cView\u003e\n      \u003cText\u003eWelcome to ReactFlow!\u003c/Text\u003e\n      \u003cButton title=\"Click Me\" onPress={() =\u003e alert('Button Pressed')} /\u003e\n    \u003c/View\u003e\n  );\n};\n\nexport default GeneratedPage;\n```\n\n---\n\n## Folder Structure\n\n```\nreactflow-reactnative-builder/\n├── public/\n├── src/\n│   ├── components/\n│   │   ├── Sidebar.jsx      # Drag-and-drop sidebar\n│   │   ├── CustomNodes.jsx  # Custom ReactFlow nodes\n│   ├── utils/\n│   │   ├── codeGenerator.js # Logic to generate React Native code\n│   ├── App.js               # Main application entry point\n│   ├── index.js             # React DOM renderer\n├── package.json\n```\n\n---\n\n## Contributing\n\nContributions are welcome! 🎉\n\n1. Fork the repository.\n2. Create a new branch:\n   ```bash\n   git checkout -b feature-name\n   ```\n3. Make your changes and commit:\n   ```bash\n   git commit -m \"Add feature-name\"\n   ```\n4. Push to your fork and submit a pull request.\n\n---\n\n## Roadmap\n\n- [ ] Add more React Native components (e.g., `Image`, `TextInput`).\n- [ ] Implement real-time preview of the generated code.\n- [ ] Add functionality for nested components.\n- [ ] Support importing/exporting project configurations.\n\n---\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n\n## Acknowledgments\n\n- [ReactFlow](https://reactflow.dev/) for the drag-and-drop diagram builder.\n- [React Native](https://reactnative.dev/) for powering cross-platform mobile apps.\n\n---\n\nHappy coding! 😊\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foneananda%2Freactflow-reactnative-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foneananda%2Freactflow-reactnative-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foneananda%2Freactflow-reactnative-builder/lists"}