This commit is contained in:
kodjomoustapha 2023-08-28 23:30:51 +01:00
parent f940da50eb
commit 83de7d7cf3
3 changed files with 23 additions and 38 deletions

BIN
assets/app_icons/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View file

@ -57,24 +57,16 @@ class _AboutScreenState extends ConsumerState<AboutScreen> {
body: SingleChildScrollView(
child: Column(
children: [
// Center(
// child: ClipOval(
// child: Image.asset(
// Theme.of(context).brightness == Brightness.light
// ? "assets/app_icons/icon-black.png"
// : "assets/app_icons/icon-red.png",
// height: 100,
// ),
// )),
const SizedBox(
height: 150,
// child: Center(
// child: Image.asset(
// "assets/icon.png",
// color: Theme.of(context).brightness == Brightness.light
// ? Colors.black
// : Colors.white,
// ))
Padding(
padding: const EdgeInsets.symmetric(vertical: 40),
child: Image.asset(
"assets/app_icons/icon.png",
color: Theme.of(context).brightness == Brightness.light
? Colors.black
: Colors.white,
fit: BoxFit.fill,
height: 130,
),
),
Column(
children: [

View file

@ -14,27 +14,20 @@ class MoreScreen extends StatelessWidget {
body: SingleChildScrollView(
child: Column(
children: [
// Padding(
// padding: const EdgeInsets.symmetric(vertical: 20),
// child: ClipOval(
// child: Image.asset(
// Theme.of(context).brightness == Brightness.light
// ? "assets/app_icons/icon-black.png"
// : "assets/app_icons/icon-red.png",
// height: 150,
// ),
// ),
// ),
SizedBox(
height: 200,
// child: Center(
// child: Image.asset(
// "assets/icon.png",
// color: Theme.of(context).brightness == Brightness.light
// ? Colors.black
// : Colors.white,
// ))
),
height: AppBar().preferredSize.height,
),
Padding(
padding: const EdgeInsets.symmetric(vertical: 40),
child: Image.asset(
"assets/app_icons/icon.png",
color: Theme.of(context).brightness == Brightness.light
? Colors.black
: Colors.white,
fit: BoxFit.fill,
height: 130,
),
),
const Divider(),
// ListTile(
// onTap: () {},