MetaTouchDev

Results 5 comments of MetaTouchDev

[Screen.Recording.2025-03-10.at.9.56.55.in.the.morning.zip](https://github.com/user-attachments/files/19221784/Screen.Recording.2025-03-10.at.9.56.55.in.the.morning.zip)

``` class PlayerWaveWidget extends StatefulWidget { String pathVoice = ''; PlayerWaveWidget({super.key, required this.pathVoice}); @override State createState() => _PlayerWaveWidgetState(); } class _PlayerWaveWidgetState extends State { final PlayerController playerController = PlayerController(); bool...

``` class ChatBubbleScreen extends StatefulWidget { const ChatBubbleScreen({super.key}); @override State createState() => _ChatBubbleScreenState(); } class _ChatBubbleScreenState extends State { final ScrollController _scrollController = ScrollController(); final FocusNode _focusNode = FocusNode(); final...

``` class ChatInputField extends StatefulWidget { final FocusNode focusNode; final RecorderController recorderController; final VoidCallback onRecordingStateChange; // Add callback to update state final VoidCallback textViewStateChange; // Add callback to update state...

Dear Mr, My code is above, but you can customize and add voice in Listview. The issue is when I try to voice a lot and scroll up and down...