Acrilc is a Flutter-based application that allows artists to showcase their artwork, and users to explore and support their creations.
🔗 Click here to view the web preview
📦 Download the APK for Android
Follow these steps to run the project locally:
- Flutter SDK installed (Install Guide)
- Android Studio or compatible IDE
- Git installed
- Clone the Repository
git clone https://github.com/abhay2133/acrilc.git
cd acrilc- Install Dependencies
flutter pub get- Set Up Environment Variables
Rename the example file and modify as needed for your local environment:
cp prod.env.example prod.envEdit prod.env and fill in the necessary variables for local development.
💡 This project may use
flutter_dotenvfor loading environment variables. Ensure the file is loaded inmain.dart:
import 'package:flutter_dotenv/flutter_dotenv.dart';
void main() async {
await dotenv.load(fileName: "prod.env");
runApp(MyApp());
}- Run the App
To run on a connected device or emulator:
flutter runYou can export an APK for distribution or manual testing.
- Debug APK
flutter build apk --debug- Release APK
flutter build apk --releaseThe APK will be generated at:
build/app/outputs/flutter-apk/app-release.apk
You can share or install this file on an Android device.
lib/
├── main.dart # App entry point
├── screens/ # UI Screens
├── widgets/ # Reusable Widgets
├── services/ # API and backend interaction
├── models/ # Data Models
└── ...
MIT License. See LICENSE for more information.