We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ba9b9 commit 627fcfaCopy full SHA for 627fcfa
example/lib/main.dart
@@ -260,10 +260,22 @@ class _MyHomePageState extends State<MyHomePage> {
260
),
261
HighlightGroup(
262
dates: [DateTime(2024, 5, 10)],
263
- builder: (context, size) => Container(
264
- width: 10,
265
- height: 10,
266
- color: Colors.blue.withOpacity(0.3),
+ builder: (context, size) => Tooltip(
+ message: 'Special Date',
+ child: InkWell(
+ onTap: () {
267
+ ScaffoldMessenger.of(context).showSnackBar(
268
+ const SnackBar(
269
+ content: Text('Special Date Tapped!'),
270
+ ),
271
+ );
272
+ },
273
+ child: Container(
274
+ width: 10,
275
+ height: 10,
276
+ color: Colors.blue.withOpacity(0.3),
277
278
279
280
281
],
0 commit comments