Skip to content

Commit

Permalink
dependency versions updated. v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
csongorkeller committed Jul 24, 2023
1 parent 12034c0 commit fa0198d
Show file tree
Hide file tree
Showing 4 changed files with 205 additions and 130 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Easy-to integrate widgets and exported functions are also part of the package.

* Fixed issues with forecasted weather data

## [2.1.1] - .
## [2.2.0] - 01/03/2023

* Added language support for weather data
* Added language support for weather data

## [2.3.0] - 24/07/2023

* Dependency versions updated to support future compatibility
13 changes: 6 additions & 7 deletions example/lib/screens/prebuilt_widgets_demo_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ class _PrebuiltWidgetsScreenState extends State<PrebuiltWidgetsScreen> {
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
OpenWeatherByCity(
apiKey: _key,
cityName: _cityName,
weatherUnits: WeatherUnits.METRIC,
color: Colors.white,
language: Languages.GERMAN
),
apiKey: _key,
cityName: _cityName,
weatherUnits: WeatherUnits.METRIC,
color: Colors.white,
language: Languages.GERMAN),
const Divider(
thickness: 1,
color: Colors.white,
Expand All @@ -59,7 +58,7 @@ class _PrebuiltWidgetsScreenState extends State<PrebuiltWidgetsScreen> {
latitude: _latitude,
longitude: _longitude,
weatherUnits: WeatherUnits.METRIC,
language: Languages.ENGLISH,
language: Languages.GERMAN,
color: Colors.white,
),
_buildButton()
Expand Down
Loading

0 comments on commit fa0198d

Please sign in to comment.