A Flutter implementation of a cryptocurrency portfolio management interface, based on a design concept from Uplabs.
This Flutter project demonstrates a clean, modern UI for tracking cryptocurrency portfolios with support for both light and dark themes.
- Dual Theme Support: Seamlessly switch between light and dark modes
- Responsive Design: Optimized for various screen sizes
- Portfolio Tracking: Visual representation of cryptocurrency holdings
- Performance Charts: Display asset performance over time
- Flutter SDK (latest stable version recommended)
- IDE with Flutter support (Android Studio, VS Code, or IntelliJ)
- Basic understanding of Dart and Flutter
- Clone the repository:
git clone https://github.com/hearclin/cryptocurrency-flutter-ui.git- Navigate to the project directory:
cd cryptocurrency-portfolio-ui- Install dependencies:
flutter pub get- Run the application:
flutter runTo switch between themes, modify the isDark variable in lib/main.dart:
bool isDark = true; // For dark theme
bool isDark = false; // For light themelib/
├── main.dart # Application entry point
├── models/ # Data models
├── screens/ # Main application screens
├── widgets/ # Reusable UI components
├── theme/ # Theme configuration
└── utils/ # Utility functions
- Application icons and images located in
assets/directory - Screenshots in
ss/directory
Contributions are welcome. Please feel free to submit pull requests or open issues for discussion.
This project was developed using:
- Flutter framework
- Dart programming language
- Material Design components