Skip to content

Commit

Permalink
v1.3.0 (Flutter 3.10)
Browse files Browse the repository at this point in the history
  • Loading branch information
amantoux committed May 12, 2023
1 parent 0501bab commit 8fb8ca8
Show file tree
Hide file tree
Showing 14 changed files with 140 additions and 231 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.3.0
* Flutter 3.10 compatibility

### 1.2.2
* Remove focus from search field when scrolling selector

Expand Down
9 changes: 0 additions & 9 deletions android/.gitignore

This file was deleted.

This file was deleted.

46 changes: 0 additions & 46 deletions android/build.gradle

This file was deleted.

1 change: 0 additions & 1 deletion android/settings.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions android/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

12 changes: 6 additions & 6 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Future<void> main() async {
}

class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
const MyApp({Key? key}) : super(key: key);

// This widget is the root of your application.
@override
Expand Down Expand Up @@ -52,18 +52,18 @@ class MyApp extends StatelessWidget {
}

class MyHomePage extends StatefulWidget {
final String title;
const MyHomePage({Key? key, required this.title}) : super(key: key);

const MyHomePage({Key key, this.title}) : super(key: key);
final String title;

@override
// ignore: library_private_types_in_public_api
_MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
GiphyGif currentGif;
GiphyClient client;
GiphyGif? currentGif;
late final GiphyClient client;
String randomId = '';
String giphyApiKey = '';

Expand Down Expand Up @@ -127,7 +127,7 @@ class _MyHomePageState extends State<MyHomePage> {
? SizedBox(
child: GiphyGifWidget(
imageAlignment: Alignment.center,
gif: currentGif,
gif: currentGif!,
giphyGetWrapper: giphyGetWrapper,
borderRadius: BorderRadius.circular(30),
showGiphyLabel: true,
Expand Down
Loading

0 comments on commit 8fb8ca8

Please sign in to comment.