I've making form screen.
process is
- button click
- bottom sheet shown
- user type their name => ok button clicked
- TEXT will be changed by user name
i wanna get data from modal bottom sheet widget but don't know how
this is my 2nd process code
InkWell(
onTap: () {
showCupertinoModalBottomSheet(
context: context,
builder: (context, scrollController) =>
RequestNameScreen());
},
...
how can i get 'name' from bottom sheet ??
