Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
Zverik committed Apr 28, 2024
1 parent 29a8e5c commit 72cd847
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lib/widgets/style_chooser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:flutter_portal/flutter_portal.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:logging/logging.dart';
import 'package:responsive_grid_list/responsive_grid_list.dart';

class StyleChooserButton extends ConsumerStatefulWidget {
Expand All @@ -30,8 +29,6 @@ class StyleChooserButton extends ConsumerStatefulWidget {
}

class _StyleChooserButtonState extends ConsumerState<StyleChooserButton> {
static final _logger = Logger('StyleChooserButton');

bool isOpen = false;
bool isDragging = false;

Expand All @@ -55,9 +52,6 @@ class _StyleChooserButtonState extends ConsumerState<StyleChooserButton> {
final gpb = context.globalPaintBounds ?? Rect.zero;
final paddingBottom = gpb.isEmpty ? 50.0 : MediaQuery.of(context).size.height - gpb.bottom;

// TODO: remove for release
_logger.info('Height: ${MediaQuery.of(context).size.height}, gpb: ${gpb.top}-${gpb.bottom}, paddingBottom: $paddingBottom, safe: ${safePadding.bottom}');

return Align(
alignment: widget.alignment,
child: Padding(
Expand Down

0 comments on commit 72cd847

Please sign in to comment.