flet-audio-recorder 0.0.1__py3-none-any.whl → 0.1.0.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flet_audio_recorder/__init__.py +6 -1
- flet_audio_recorder/audio_recorder.py +294 -0
- flet_audio_recorder-0.1.0.dev1.dist-info/METADATA +93 -0
- flet_audio_recorder-0.1.0.dev1.dist-info/RECORD +16 -0
- {flet_audio_recorder-0.0.1.dist-info → flet_audio_recorder-0.1.0.dev1.dist-info}/WHEEL +2 -1
- flet_audio_recorder-0.1.0.dev1.dist-info/top_level.txt +2 -0
- flutter/flet_audio_recorder/CHANGELOG.md +3 -0
- flutter/flet_audio_recorder/LICENSE +201 -0
- flutter/flet_audio_recorder/README.md +3 -0
- flutter/flet_audio_recorder/analysis_options.yaml +4 -0
- flutter/flet_audio_recorder/lib/flet_audio_recorder.dart +3 -0
- flutter/flet_audio_recorder/lib/src/audio_recorder.dart +165 -0
- flutter/flet_audio_recorder/lib/src/create_control.dart +17 -0
- flutter/flet_audio_recorder/lib/src/utils/audio_recorder.dart +26 -0
- flutter/flet_audio_recorder/pubspec.lock +799 -0
- flutter/flet_audio_recorder/pubspec.yaml +18 -0
- .DS_Store +0 -0
- flet_audio_recorder/.DS_Store +0 -0
- flet_audio_recorder-0.0.1.dist-info/.DS_Store +0 -0
- flet_audio_recorder-0.0.1.dist-info/METADATA +0 -14
- flet_audio_recorder-0.0.1.dist-info/RECORD +0 -7
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: flet_audio_recorder
|
|
2
|
+
description: Flet AudioRecorder control
|
|
3
|
+
homepage: https://flet.dev
|
|
4
|
+
repository: https://github.com/flet-dev/flet-audio-recorder/src/flutter/flet_audio_recorder
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
environment:
|
|
7
|
+
sdk: '>=3.2.3 <4.0.0'
|
|
8
|
+
flutter: '>=1.17.0'
|
|
9
|
+
dependencies:
|
|
10
|
+
flutter:
|
|
11
|
+
sdk: flutter
|
|
12
|
+
collection: ^1.16.0
|
|
13
|
+
record: ^5.1.2
|
|
14
|
+
flet: ^0.25.2
|
|
15
|
+
dev_dependencies:
|
|
16
|
+
flutter_test:
|
|
17
|
+
sdk: flutter
|
|
18
|
+
flutter_lints: ^2.0.0
|
.DS_Store
DELETED
|
Binary file
|
flet_audio_recorder/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: flet-audio-recorder
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: Flet Audio Recorder control
|
|
5
|
-
Author: Appveyor Systems Inc.
|
|
6
|
-
Author-email: hello@flet.dev
|
|
7
|
-
Requires-Python: >=3.8,<4.0
|
|
8
|
-
Project-URL: homepage, https://flet.dev
|
|
9
|
-
Download-URL:
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
11
|
-
|
|
12
|
-
# Flet Audio Recorder
|
|
13
|
-
|
|
14
|
-
Flet Audio Recorder control.
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
.DS_Store,sha256=UGxWgJfmLLyazGK5A-uGE3FwdljfvRyUi6SV7VdJU-E,6148
|
|
2
|
-
flet_audio_recorder/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
3
|
-
flet_audio_recorder/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
4
|
-
flet_audio_recorder-0.0.1.dist-info/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
5
|
-
flet_audio_recorder-0.0.1.dist-info/METADATA,sha256=pqSepB7F1I1ckJLWCFT9TVOGR4_P4Bmw8qP0yjKRN6A,333
|
|
6
|
-
flet_audio_recorder-0.0.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
7
|
-
flet_audio_recorder-0.0.1.dist-info/RECORD,,
|