Skip to content

Instantly share code, notes, and snippets.

@webianks
Created August 14, 2019 06:47
Show Gist options
  • Save webianks/01d22358fa94201b1aafd0f212520f24 to your computer and use it in GitHub Desktop.
Save webianks/01d22358fa94201b1aafd0f212520f24 to your computer and use it in GitHub Desktop.
CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text(
title,
style: TextStyle(color: Colors.black),
),
trailing: CupertinoButton(
padding: EdgeInsets.only(top: 0, right: 16.0),
child: Text(
"Save",
style: TextStyle(color: Color(Const.colorPrimary)),
),
onPressed: savePressed,
),
),
child: SafeArea(child: getUserDataWidget()),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment