step 11 : play and pause rekaman dan slicing edit screen

This commit is contained in:
sindhu
2025-02-22 12:37:52 +07:00
parent c9cc76fbe7
commit 1206d7de24
11 changed files with 440 additions and 78 deletions

View File

@@ -1,3 +1,4 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:mobile_scanner/mobile_scanner.dart';
import '../../model/edit_voice_to_text_model.dart';
@@ -25,4 +26,12 @@ final selectedEdit = StateProvider<EditVoiceToTextModel>(
//
final barcodeX = StateProvider<Barcode>(
(ref) => Barcode(),
);
);
final noteCtr = StateProvider<TextEditingController>(
(ref) => TextEditingController(text: ""),
);
final textCtr = StateProvider<TextEditingController>(
(ref) => TextEditingController(text: ""),
);