mirror of
https://github.com/Iconica-Development/flutter_media_picker.git
synced 2025-05-19 00:43:45 +02:00
Fix: fix formatting and added logger back
This commit is contained in:
parent
48045517de
commit
8a70a0194a
5 changed files with 6 additions and 5 deletions
|
@ -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:
|
||||
|
|
|
@ -149,7 +149,7 @@ class _RecorderState extends State<Recorder> {
|
|||
),
|
||||
),
|
||||
style: widget.inputStyling.timeTextStyle ??
|
||||
Theme.of(context).textTheme.headline5,
|
||||
Theme.of(context).textTheme.headlineSmall,
|
||||
);
|
||||
},
|
||||
),
|
||||
|
|
|
@ -192,7 +192,7 @@ class _MediaPickerState extends State<MediaPicker> {
|
|||
padding: const EdgeInsets.only(left: 15),
|
||||
child: Text(
|
||||
input.label,
|
||||
style: theme.textTheme.headline6,
|
||||
style: theme.textTheme.titleLarge,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue