Skip to content

Instantly share code, notes, and snippets.

@milan-7span
Last active January 2, 2023 17:04
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