diff --git a/packages/flutter_timeline/lib/src/models/timeline_options.dart b/packages/flutter_timeline/lib/src/models/timeline_options.dart index 254b2ca..84f6e5e 100644 --- a/packages/flutter_timeline/lib/src/models/timeline_options.dart +++ b/packages/flutter_timeline/lib/src/models/timeline_options.dart @@ -78,13 +78,12 @@ Widget _defaultFloatingActionButton( BuildContext context, ) { var theme = Theme.of(context); - return FloatingActionButton.large( + return FloatingActionButton( backgroundColor: theme.primaryColor, onPressed: onPressed, - child: Icon( + elevation: 0, + child: const Icon( Icons.add, - size: 44, - color: theme.colorScheme.onPrimary, ), ); }