Browse Source

update UI

pull/18/head
Sun 4 years ago
parent
commit
1c420584c9
  1. 7
      lib/pages/setting/profile.dart

7
lib/pages/setting/profile.dart

@ -56,8 +56,9 @@ class _ProfileDetailState extends State<ProfileDetail> {
alignment: WrapAlignment.center, alignment: WrapAlignment.center,
children: <Widget>[ children: <Widget>[
Container( Container(
width: 180.0, width: 200.0,
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [ children: [
Container( Container(
width: 100.0, width: 100.0,
@ -161,6 +162,7 @@ class _ProfileDetailState extends State<ProfileDetail> {
])), ])),
Container( Container(
width: 400.0, width: 400.0,
padding: const EdgeInsets.only(left: 20.0),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.max,
@ -169,7 +171,8 @@ class _ProfileDetailState extends State<ProfileDetail> {
_infoListTooltip(Icons.location_on, color.primary, addrText(Global.addr), addrPrint(Global.addr)), _infoListTooltip(Icons.location_on, color.primary, addrText(Global.addr), addrPrint(Global.addr)),
SizedBox( SizedBox(
height: 40.0, height: 40.0,
child: Row(children: [ child: Row(
children: [
Icon(Icons.security_rounded, Icon(Icons.security_rounded,
size: 20.0, color: color.primary), size: 20.0, color: color.primary),
const SizedBox(width: 20.0), const SizedBox(width: 20.0),

Loading…
Cancel
Save