A Weather Forecast App made with Flutter.
The design belongs to the following Figma project:
🔗 Weather App Figma Project
1️⃣ Clone the project to your local computer.
2️⃣ Navigate to the lib folder and create a new folder called .env.
3️⃣ Inside .env, create a file named keys.dart.
4️⃣ Paste the following code inside keys.dart:
class EnvKeys {
static const String apiKey = 'YOUR_API_KEY';
static const String baseUrl = 'https://api.openweathermap.org/data/2.5';
}


