Fix: fix formatting and added logger back

This commit is contained in:
Thomas Klein Langenhorst 2023-03-28 11:03:13 +02:00
parent 48045517de
commit 8a70a0194a
5 changed files with 6 additions and 5 deletions

View file

@ -335,10 +335,10 @@ packages:
dependency: transitive dependency: transitive
description: description:
name: logger name: logger
sha256: "5076f09225f91dc49289a4ccb92df2eeea9ea01cf7c26d49b3a1f04c6a49eec1" sha256: db2ff852ed77090ba9f62d3611e4208a3d11dfa35991a81ae724c113fcb3e3f7
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.1.0" version: "1.3.0"
matcher: matcher:
dependency: transitive dependency: transitive
description: description:

View file

@ -149,7 +149,7 @@ class _RecorderState extends State<Recorder> {
), ),
), ),
style: widget.inputStyling.timeTextStyle ?? style: widget.inputStyling.timeTextStyle ??
Theme.of(context).textTheme.headline5, Theme.of(context).textTheme.headlineSmall,
); );
}, },
), ),

View file

@ -192,7 +192,7 @@ class _MediaPickerState extends State<MediaPicker> {
padding: const EdgeInsets.only(left: 15), padding: const EdgeInsets.only(left: 15),
child: Text( child: Text(
input.label, input.label,
style: theme.textTheme.headline6, style: theme.textTheme.titleLarge,
), ),
), ),
), ),

View file

@ -13,7 +13,7 @@ import 'package:permission_handler/permission_handler.dart';
class MediaPickerAudioService implements AudioService { class MediaPickerAudioService implements AudioService {
final FlutterSoundRecorder _recorder = FlutterSoundRecorder( final FlutterSoundRecorder _recorder = FlutterSoundRecorder(
logLevel: Level.nothing, logLevel: Level.debug,
); );
final FlutterSoundPlayer _player = FlutterSoundPlayer( final FlutterSoundPlayer _player = FlutterSoundPlayer(
logLevel: Level.nothing, logLevel: Level.nothing,

View file

@ -20,6 +20,7 @@ dependencies:
flutter_sound: ^9.2.13 flutter_sound: ^9.2.13
intl: ^0.17.0 intl: ^0.17.0
permission_handler: ^10.2.0 permission_handler: ^10.2.0
logger: ^1.3.0
flutter_form_wizard: flutter_form_wizard:
git: git:
url: https://github.com/Iconica-Development/flutter_form_wizard.git url: https://github.com/Iconica-Development/flutter_form_wizard.git