Skip to content

Instantly share code, notes, and snippets.

@sagarshende23
Last active December 1, 2019 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagarshende23/7b99e40f1845f108c81301f974aae1d1 to your computer and use it in GitHub Desktop.
Save sagarshende23/7b99e40f1845f108c81301f974aae1d1 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:giffy_dialog/giffy_dialog.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(fontFamily: 'Nunito'),
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
centerTitle: true,
backgroundColor: Colors.black,
title: Text('Giffy Dialog Example'),
),
body: MyHomePage(),
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment