Skip to content

Instantly share code, notes, and snippets.

@MisterJimson
Created March 22, 2021 15:48
Show Gist options
  • Save MisterJimson/56498ea0cfbb6f7269f30a8d8d8a99a0 to your computer and use it in GitHub Desktop.
Save MisterJimson/56498ea0cfbb6f7269f30a8d8d8a99a0 to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: TwoPageLayout(
child: Center(
child: MultiScreenInfo(builder: (info) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many times:',
),
if (!info.surfaceDuoInfoModel.isSpanned)
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
],
);
}),
),
secondChild: Center(
child: Text(
'$_counter',
style: Theme.of(context).textTheme.headline1,
),
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: Icon(Icons.add),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment