About screen

This commit is contained in:
2021-03-21 19:22:30 +02:00
parent dd1c8113a5
commit 67666d9a7c
+75 -47
View File
@@ -6,7 +6,7 @@ class AboutView extends StatelessWidget {
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
centerTitle: false, centerTitle: false,
backgroundColor: Colors.white, backgroundColor: Colors.grey[200],
title: Text( title: Text(
"A Propos", "A Propos",
style: TextStyle( style: TextStyle(
@@ -17,57 +17,85 @@ class AboutView extends StatelessWidget {
color: Color(0xFF545454), //change your color here color: Color(0xFF545454), //change your color here
), ),
), ),
body: SingleChildScrollView( body: Center(
child: Center( child: Column(
child: Column( mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [ children: [
Text( Column(
"Le Kiosque", children: [
style: TextStyle(fontSize: 26, color: Colors.black), Text(
), "Le Kiosque",
Text( style: TextStyle(
"Version 1.0.0", fontSize: 26,
style: TextStyle( color: Color(0xFF484848),
fontSize: 17,
),
),
Container(
decoration: BoxDecoration(
color: Colors.grey[200],
image: DecorationImage(
image: AssetImage("assets/images/kiosque_logo.png"),
),
borderRadius: BorderRadius.all(
Radius.circular(40),
), ),
), ),
height: 80, SizedBox(
width: 80, height: 10,
),
Text(
"Copyright 2020 Le Kiosque",
style: TextStyle(
fontSize: 17,
), ),
), Text(
Text( "Version 1.0.0",
"From", style: TextStyle(
style: TextStyle( fontSize: 17,
fontSize: 20, ),
fontWeight: FontWeight.bold, )
],
),
Container(
decoration: BoxDecoration(
color: Colors.white,
image: DecorationImage(
image: AssetImage("assets/images/kiosque_logo.png"),
), ),
), borderRadius: BorderRadius.all(
Text( Radius.circular(50),
"ZX CONNECT",
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
), ),
) border: Border.all(
], color: Colors.white,
), width: 8,
),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 2,
offset: Offset(0, 1), // changes position of shadow
)
],
),
height: 100,
width: 100,
),
Text(
"Copyright 2020 Le Kiosque",
style: TextStyle(
fontSize: 17,
),
),
Column(
children: [
Text(
"From",
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
SizedBox(
height: 10,
),
Text(
"ZX CONNECT",
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
),
)
],
)
],
), ),
), ),
); );