Skip to content

Commit 2261575

Browse files
committed
Update version and README
1 parent 5debdb5 commit 2261575

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
# 0.0.4
1+
# Changelog
2+
3+
## 0.0.5
4+
5+
* Update README.
6+
7+
## 0.0.4
28

39
* Add full color palette.
410
* Improves documentation.
511

6-
# 0.0.3
12+
## 0.0.3
713

814
* Change GitHub repo name.
915
* Update TextField and TextButton theme to fit adwaita.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Inspired by the [yaru theme](https://github.com/ubuntu/yaru.dart) for flutter.
2525

2626
```dart
2727
import 'package:flutter/material.dart';
28-
import 'package:adwaita/adwaita.dart' as adwaita;
28+
import 'package:adwaita/adwaita.dart';
2929
3030
void main() => runApp(MyApp());
3131
@@ -40,8 +40,8 @@ class MyApp extends StatelessWidget {
4040
valueListenable: themeNotifier,
4141
builder: (_, ThemeMode currentMode, __) {
4242
return MaterialApp(
43-
theme: adwaita.lightTheme,
44-
darkTheme: adwaita.darkTheme,
43+
theme: AdwaitaThemeData.light(),
44+
darkTheme: AdwaitaThemeData.dark(),
4545
debugShowCheckedModeBanner: false,
4646
home: MyHomePage(themeNotifier: themeNotifier),
4747
themeMode: currentMode);

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
path: ".."
88
relative: true
99
source: path
10-
version: "0.0.4"
10+
version: "0.0.5"
1111
async:
1212
dependency: transitive
1313
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: adwaita
22
description: Adwaita style - The default theme for GTK+ for your Flutter app.
3-
version: 0.0.4
3+
version: 0.0.5
44
homepage: https://github.com/gtk-flutter/adwaita
55

66
environment:

0 commit comments

Comments
 (0)