mrahimygk / kip-flutter

A free and open source note app similar to Google Keep. This is the client repo made in Flutter.
3 stars 4 forks source link

Move voice recording implementation to another widget #12

Open mrahimygk opened 4 years ago

mrahimygk commented 4 years ago

We need it to be reusable in main_page and add_note_page

kamal-kaur04 commented 4 years ago

Hii @mrahimygk, Can I work on this issue?

kamal-kaur04 commented 4 years ago

Hey @mrahimygk, Can you help me to locate the voice recording implementation and clarify on the issue?

mrahimygk commented 4 years ago

@kamal-kaur04 We need to record voice in two pages: main_page.dart and add_note_page. The logic is inside main page for now, which prevents us to use that in another pages (look for bool isRecording = false; and FlutterAudioRecorder recorder in main_page.dart). I need a good solution that builds an api to record and show the visualizations dialog.