Skip to content

Instantly share code, notes, and snippets.

View a-k-14's full-sized avatar
🎯
Focusing

akshay a-k-14

🎯
Focusing
View GitHub Profile
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();