This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:clima/utilities/constants.dart'; | |
import 'package:clima/services/weather.dart'; | |
class LocationScreen extends StatefulWidget { | |
// final test = 'ABC'; | |
final locationWeather; // to get the weather data from loading screen | |
LocationScreen({this.locationWeather}); | |
@override | |
_LocationScreenState createState() => _LocationScreenState(); |