You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

54 lines
1.3 KiB

import 'package:flutter/material.dart';
buildEmpty3P(BuildContext context) {
return Container(
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
children: [
SizedBox(
height: 50,
),
Container(
width: 100,
height: 100,
padding: EdgeInsets.all(15),
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(
color: Theme.of(context).primaryColorLight,
width: 1,
),
),
child: ImageIcon(
AssetImage("assets/images/rawLogo.png"),
),
),
SizedBox(
height: 10,
),
Container(
width: MediaQuery.of(context).size.width,
margin: EdgeInsets.only(
top: 10,
),
child: Center(
child: Text(
"No content",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 23,
),
),
),
),
SizedBox(
height: 10,
),
],
),
),
);
}