Answers for "onpressed flutter"

16

flutter navigate to new screen

// Within the `FirstRoute` widget
onPressed: () {
  Navigator.push(
    context,
    MaterialPageRoute(builder: (context) => SecondRoute()),
  );
}
Posted by: Guest on March-25-2020
0

onpressed pass context flutter

FloatingActionButton(
      onPressed: () => _showAddingDialog(context),
  ),
  
  Future _showAddingDialog(BuildContext context) {
  // ...
  }
Posted by: Guest on January-22-2021

Code answers related to "onpressed flutter"

Browse Popular Code Answers by Language