This commit is contained in:
Patrick Alvin Alcala 2025-01-30 13:45:43 +08:00
parent e48e400e43
commit ecc427c958
5 changed files with 76 additions and 18 deletions

View file

@ -0,0 +1,44 @@
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:pharmacy_mobile/widgets/text_widget.dart';
import 'package:pharmacy_mobile/widgets/title_widget.dart';
class ListStocksPage extends StatefulWidget {
const ListStocksPage({super.key});
@override
_ListStocksPageState createState() => _ListStocksPageState();
}
class _ListStocksPageState extends State<ListStocksPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
alignment: Alignment.center,
height: MediaQuery.of(context).size.height,
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [
Color.fromRGBO(34, 51, 69, 1),
Color.fromRGBO(22, 32, 44, 1),
],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
),
),
child: Center(
child: Column(
children: [
const Gap(120),
const TitleWidget(firstTextSize: 16, secondTextSize: 32),
const Gap(32),
const TextWidget(text: 'List of Stocks'),
const Gap(16),
],
),
),
),
);
}
}