dart
launch flutter web app in full-screen on button click
: RaisedButton(
onPressed: () {
FlutterWebFullScreen.enterFullScreen();
},
child: Text('Enter Full Screen'),
),
Was this helpful?
Similar Posts