open_weather_map_client 0.0.5
open_weather_map_client: ^0.0.5 copied to clipboard
Package that communicates with Open Weather Map to obtain climate data in a model.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:open_weather_map_client/open_weather_map_client.dart';
import 'package:provider/provider.dart';
void main() {
runApp(MultiProvider(
providers: [
//ChangeNotifierProvider(create: (context) => OpenWeatherMap(),)
],
child: MyApp(),
));
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// TODO: implement build
throw UnimplementedError();
}
}