Skip to content

Commit

Permalink
chore: made current version v1.0.4 as default
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers authored Jun 15, 2023
1 parent 71d68ac commit 346083a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add `flutter_any_logo` as a dependency in your `pubspec.yaml` file.

```
dependencies:
flutter_any_logo: ^1.0.3
flutter_any_logo: ^1.0.4
```

Then, run `flutter pub get` in your terminal to install the plugin.
Expand All @@ -56,9 +56,7 @@ You can now use the provided `AnyLogo` widget to display the logos in your app.

```dart
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
Expand All @@ -69,7 +67,6 @@ class _MyHomePageState extends State<MyHomePage> {
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(body: AnyLogo.tech.google.image()
// This trailing comma makes auto-formatting nicer for build methods.
),
);
}
Expand Down

0 comments on commit 346083a

Please sign in to comment.