Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/components/appbar/gf_appbar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class _GFAppBarState extends State<GFAppBar> {
assert(!widget.primary || debugCheckHasMediaQuery(context));
assert(debugCheckHasMaterialLocalizations(context));
final ThemeData theme = Theme.of(context);
final AppBarTheme appBarTheme = AppBarTheme.of(context);
final appBarTheme = AppBarTheme.of(context);
final ScaffoldState scaffold = Scaffold.of(context);
final ModalRoute<dynamic>? parentRoute = ModalRoute.of(context);
final bool hasDrawer = scaffold.hasDrawer;
Expand Down
2 changes: 1 addition & 1 deletion lib/components/card/gf_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class GFCard extends StatelessWidget {

@override
Widget build(BuildContext context) {
final CardThemeData cardTheme = CardTheme.of(context);
final cardTheme = CardTheme.of(context);

final Widget cardChild = Padding(
padding: padding,
Expand Down