Last active
December 15, 2019 11:59
-
-
Save sagarshende23/8e0f3c5e73eae9f5c4ee311b64623d3e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyHomePage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
String networkimg = | |
'https://cdn.dribbble.com/users/750517/screenshots/8574989/media/7610aa397363fdfe6f2daa1145493aee.gif'; | |
return Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
RaisedButton( | |
key: keys[0], | |
child: Text('Network Giffy'), | |
onPressed: () { | |
showDialog( | |
context: context, | |
builder: (_) => NetworkGiffyDialog( | |
key: keys[1], | |
image: Image.network( | |
networkimg, | |
fit: BoxFit.cover, | |
), | |
title: Text( | |
"Ostrich Running", | |
style: TextStyle( | |
fontSize: 22.0, | |
fontWeight: FontWeight.bold, | |
), | |
), | |
description: Text( | |
'This is the Ostrich Running Dialog Box. This will help you to understand NEtwork Giffy Animation', | |
textAlign: TextAlign.center, | |
), | |
entryAnimation: EntryAnimation.RIGHT, | |
onOkButtonPressed: (){}, | |
)); | |
}, | |
), | |
], | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment