HyM attachments resolve: #2 #3
@ -7,12 +7,18 @@ class AttachmentWidget extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Stack(
|
return Container(
|
||||||
|
color: Colors.black38,
|
||||||
|
child: Stack(
|
||||||
// appBar: AppBar(title: Text('New Tab Content')),
|
// appBar: AppBar(title: Text('New Tab Content')),
|
||||||
children: [
|
children: <Widget> [
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.fromLTRB(10, 20, 0, 0),
|
Container(
|
||||||
|
color: Colors.white,
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.fromLTRB(10, 20, 0, 10),
|
||||||
child: Row(
|
child: Row(
|
||||||
|
|
||||||
children: [
|
children: [
|
||||||
CloseButton(
|
CloseButton(
|
||||||
onPressed: () => {
|
onPressed: () => {
|
||||||
@ -30,6 +36,7 @@ class AttachmentWidget extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
Center(
|
Center(
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
@ -43,6 +50,7 @@ class AttachmentWidget extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user