diff --git a/example/pubspec.lock b/example/pubspec.lock index f7b03a9..1a0ce60 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -335,10 +335,10 @@ packages: dependency: transitive description: name: logger - sha256: "5076f09225f91dc49289a4ccb92df2eeea9ea01cf7c26d49b3a1f04c6a49eec1" + sha256: db2ff852ed77090ba9f62d3611e4208a3d11dfa35991a81ae724c113fcb3e3f7 url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.3.0" matcher: dependency: transitive description: diff --git a/lib/src/inputs/input_audio.dart b/lib/src/inputs/input_audio.dart index 2fe8597..0155f83 100644 --- a/lib/src/inputs/input_audio.dart +++ b/lib/src/inputs/input_audio.dart @@ -149,7 +149,7 @@ class _RecorderState extends State { ), ), style: widget.inputStyling.timeTextStyle ?? - Theme.of(context).textTheme.headline5, + Theme.of(context).textTheme.headlineSmall, ); }, ), diff --git a/lib/src/media_picker.dart b/lib/src/media_picker.dart index 9d54e79..82c0961 100644 --- a/lib/src/media_picker.dart +++ b/lib/src/media_picker.dart @@ -192,7 +192,7 @@ class _MediaPickerState extends State { padding: const EdgeInsets.only(left: 15), child: Text( input.label, - style: theme.textTheme.headline6, + style: theme.textTheme.titleLarge, ), ), ), diff --git a/lib/src/service/audio_service.dart b/lib/src/service/audio_service.dart index f17c022..6ae6024 100644 --- a/lib/src/service/audio_service.dart +++ b/lib/src/service/audio_service.dart @@ -13,7 +13,7 @@ import 'package:permission_handler/permission_handler.dart'; class MediaPickerAudioService implements AudioService { final FlutterSoundRecorder _recorder = FlutterSoundRecorder( - logLevel: Level.nothing, + logLevel: Level.debug, ); final FlutterSoundPlayer _player = FlutterSoundPlayer( logLevel: Level.nothing, diff --git a/pubspec.yaml b/pubspec.yaml index 0190549..53fcc8a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -20,6 +20,7 @@ dependencies: flutter_sound: ^9.2.13 intl: ^0.17.0 permission_handler: ^10.2.0 + logger: ^1.3.0 flutter_form_wizard: git: url: https://github.com/Iconica-Development/flutter_form_wizard.git