mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 23:22:07 +00:00
icon +
This commit is contained in:
parent
f940da50eb
commit
83de7d7cf3
3 changed files with 23 additions and 38 deletions
BIN
assets/app_icons/icon.png
Normal file
BIN
assets/app_icons/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
|
|
@ -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: [
|
||||
|
|
|
|||
|
|
@ -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: () {},
|
||||
|
|
|
|||
Loading…
Reference in a new issue