This commit is contained in:
Patrick Alvin Alcala 2025-02-04 17:26:32 +08:00
parent e6aebd9a64
commit 2c63edd554
11 changed files with 13 additions and 13 deletions

View file

@ -30,12 +30,12 @@ class IndexPage extends StatelessWidget {
child: Column(
children: [
const Gap(88),
const TitleWidget(firstTextSize: 32, secondTextSize: 40),
const TitleWidget(firstTextSize: 24, secondTextSize: 32),
const Gap(32),
Padding(
padding: const EdgeInsets.fromLTRB(0, 0, 38, 0),
child: Image.asset('assets/ph_logo2.webp',
width: 200, cacheWidth: (200 * MediaQuery.of(context).devicePixelRatio).round()),
width: 192, cacheWidth: (192 * MediaQuery.of(context).devicePixelRatio).round()),
),
const Gap(64),
ButtonWidget(text: 'Login', onPressed: gotoLogin),