Unverified Commit e85d0992 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Apply media padding to Contacts demo (#13628)

Applies horizontal safe area insets to the Contacts demo in the Gallery.
This is to support the iPhone X sensor housing notch and other similarly
creative display features when in landscape orientation.
parent 2e1b0a7f
......@@ -20,18 +20,22 @@ class _ContactCategory extends StatelessWidget {
),
child: new DefaultTextStyle(
style: Theme.of(context).textTheme.subhead,
child: new Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new Container(
padding: const EdgeInsets.symmetric(vertical: 24.0),
width: 72.0,
child: new Icon(icon, color: themeData.primaryColor)
),
new Expanded(child: new Column(children: children))
]
)
)
child: new SafeArea(
top: false,
bottom: false,
child: new Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new Container(
padding: const EdgeInsets.symmetric(vertical: 24.0),
width: 72.0,
child: new Icon(icon, color: themeData.primaryColor)
),
new Expanded(child: new Column(children: children))
],
),
),
),
);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment