big_tip 2.0.0 big_tip: ^2.0.0 copied to clipboard
Display information to the user using a custom layout, that can be actionable
import 'package:big_tip/big_tip.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'big_tip',
theme: ThemeData(
accentColor: Colors.orange,
),
home: HomePage(),
);
}
}
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Big tip'),
),
body: BigTip(
child: Icon(Icons.cake),
title: Text('The cake is a lie'),
subtitle: Text('Is this a Portal reference?'),
action: Text('CALL GABEN'),
actionCallback: () => print('Ding dong'),
),
);
}
}