Skip to content

Instantly share code, notes, and snippets.

@milan-7span
Last active January 2, 2023 17:04
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 milan-7span/522916b9bdafd15913e315aaf2df1bb0 to your computer and use it in GitHub Desktop.
Save milan-7span/522916b9bdafd15913e315aaf2df1bb0 to your computer and use it in GitHub Desktop.
In App Notification
final result = await InAppNotification.show(
child: Column(
children: [
Container(
padding: EdgeInsets.only(top: 40),
height: 160,
decoration: BoxDecoration(borderRadius: BorderRadius.circular(20)),
child: Image.asset('assets/images/dash.png'),
),
const Text(
"Generic Error Message",
style: TextStyle(color: Colors.red, fontSize: 21),
)
],
),
context: context,
onTap: () {},
duration: const Duration(seconds: 3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment