Skip to the content.

World Weather (Flutter)

Used openweathermap weather APIs
https://openweathermap.org/

How to Run the app

Update openweathermap API token

Follow the steps given in the below site to get API token https://openweathermap.org/appid

lib\app_data\globals.dart file

String apiToken = 'YourOpenWeatherMapAPIToken';

Update your google map API token

Follow the steps given in the below site to get google map API token and enable google map sdk for Android and iOS https://developers.google.com/maps/documentation/android-sdk/get-api-key

Android

In AndroidManifest.xml file

  <meta-data android:name="com.google.android.geo.API_KEY"
  android:value="YourGoogleMapAPI_TOKEN"/>

iOS

In AppDelegate.swift file

GMSServices.provideAPIKey("YourGoogleMapAPI_TOKEN")

ScreenShots