BORO is a modern Flutter application that enables users to lend and find items within their community. Connect with neighbors, friends and others and promote sustainable sharing.
- 📱 Modern UI: Intuitive and engaging design
- 🔍 Search & Discover: Find items near you with advanced filtering
- 🤝 Community Sharing: Lend your items or give them away
- 👥 Social Features: Connect with friends and form lending groups
- 🔒 Security: Secure authentication and privacy protection
- 📸 Item Showcase: Upload and display item images
- 🌐 Multi-language: Support for English and German
- Frontend: Flutter with Material Design
- Backend: Supabase (PostgreSQL)
- Authentication: Supabase Auth with PKCE flow
- Database: PostgreSQL with Row Level Security
- Storage: Supabase Storage for images
- Deployment: Web (Vercel), Android (Google Play)
For complete architecture documentation, see architecture.md.
lib/
├── components/ # Reusable UI widgets
├── config/ # Configuration (Supabase)
├── l10n/ # Localization (English & German)
├── models/ # Data models
├── pages/ # Full-screen pages
├── services/ # Business logic
├── utils/ # Helper functions
└── main.dart # App entry point
- Flutter SDK (3.5.4 or higher)
- Dart SDK (3.5.4 or higher)
- Supabase account and project (The project is developed with the cloud-instance from Supabase. Local database for development and contribution is following.)
- Android Studio (for mobile development)
- Clone repository:
git clone https://github.com/purechris/boro.git
cd boro- Install dependencies:
flutter pub get-
Configure Supabase:
- Copy
lib/config/supabase_config.dart.exampletolib/config/supabase_config.dart - Fill in your Supabase URL and anonymous key
- Copy
-
Run the app:
flutter runflutter run -d chromeAndroid:
flutter run -d androidThe application architecture revolves around these core services:
- AuthService - User authentication and account management
- UserService - User profile operations
- LendableService - Item/article management
- FriendService - Friend relationships and requests
- FavoriteService - Favorite items management
- FileService - Image upload and storage
- GroupService - User groups and memberships
Each service encapsulates business logic and communicates with Supabase.
The app supports English and German.
Important: Always edit the .arb source files, then run:
flutter gen-l10nDo not edit the auto-generated localization files directly.
Source files:
lib/l10n/app_en.arb- Englishlib/l10n/app_de.arb- German
This project is licensed under the GNU General Public License v3.0 (GPL-3.0).
Questions or suggestions?
- 📧 Email: hello@boro-app.de
- 🌐 Website: boro-app.de
Made by Purechris



