Scaffold(
floatingActionButton: renderFloatingActionButton(), // have to define here
body: {...}
FloatingActionButton renderFloatingActionButton() { // make it a render function
return FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add),
);
}
)
Dart
복사
