Skip to content

Commit

Permalink
Commit from GitHub Actions (Forui Example Presubmit)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Jul 24, 2024
1 parent e6d45af commit daa2cfa
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions forui/example/lib/example.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';

import 'package:forui/forui.dart';

class Example extends StatefulWidget {
Expand All @@ -16,16 +17,16 @@ class _ExampleState extends State<Example> {

@override
Widget build(BuildContext context) => Column(
children: [
// Material(
// child: CalendarDatePicker(initialDate: DateTime.now(), firstDate: DateTime.utc(2000),
// lastDate: DateTime.utc(2030), onDateChanged: (DateTime value) { },),
// ),
FCalendar(
controller: FCalendarSingleValueController(),
start: DateTime.utc(2000),
end: DateTime.utc(2030),
),
],
);
children: [
// Material(
// child: CalendarDatePicker(initialDate: DateTime.now(), firstDate: DateTime.utc(2000),
// lastDate: DateTime.utc(2030), onDateChanged: (DateTime value) { },),
// ),
FCalendar(
controller: FCalendarSingleValueController(),
start: DateTime.utc(2000),
end: DateTime.utc(2030),
),
],
);
}

0 comments on commit daa2cfa

Please sign in to comment.