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: 0 additions & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,6 @@ linter:
use_enums: true
use_full_hex_values_for_flutter_colors: true
use_function_type_syntax_for_parameters: true
use_if_null_to_convert_nulls_to_bools: true
use_late_for_private_fields_and_variables: true
use_named_constants: true
use_super_parameters: true
use_to_and_as_if_applicable: true
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class _MainAppState extends State<MainApp> {
return BlocBuilder<ThemeBloc, ThemeState>(
builder: (context, state) {
// Speeds up `liquid_glass_widgets` rendering when multiple glass
// widgets appear on screen. Safe to keep even if no glass is used.
// widgets appear on screen. Safe to keep even if no glass is used
return GlassBackdropScope(
child: MaterialApp.router(
debugShowCheckedModeBanner: false,
Expand Down
Loading