Skip to content

Saravana2/World-Weather-Flutter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

World Weather (Flutter)

  • User can able to view cities and their weather details.
  • User can able to view current location weather details.
  • User can able to view weather details of near by location in map view.
  • User can move the pointer in the map view to get the weather details of near by places of the pointer (around 50 places weather).

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