76 lines
2.0 KiB
Dart
76 lines
2.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AboutView extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
centerTitle: false,
|
|
backgroundColor: Colors.white,
|
|
title: Text(
|
|
"A Propos",
|
|
style: TextStyle(
|
|
color: Colors.black,
|
|
),
|
|
),
|
|
iconTheme: IconThemeData(
|
|
color: Color(0xFF545454), //change your color here
|
|
),
|
|
),
|
|
body: SingleChildScrollView(
|
|
child: Center(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
"Le Kiosque",
|
|
style: TextStyle(fontSize: 26, color: Colors.black),
|
|
),
|
|
Text(
|
|
"Version 1.0.0",
|
|
style: TextStyle(
|
|
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,
|
|
width: 80,
|
|
),
|
|
Text(
|
|
"Copyright 2020 Le Kiosque",
|
|
style: TextStyle(
|
|
fontSize: 17,
|
|
),
|
|
),
|
|
Text(
|
|
"From",
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
Text(
|
|
"ZX CONNECT",
|
|
style: TextStyle(
|
|
fontSize: 22,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|