feat: Initialize project
This commit is contained in:
85
lib/ui/views/home/home_view.dart
Normal file
85
lib/ui/views/home/home_view.dart
Normal file
@@ -0,0 +1,85 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:stacked/stacked.dart';
|
||||
import 'package:bahla_front/ui/common/app_colors.dart';
|
||||
import 'package:bahla_front/ui/common/ui_helpers.dart';
|
||||
|
||||
import 'home_viewmodel.dart';
|
||||
|
||||
class HomeView extends StackedView<HomeViewModel> {
|
||||
const HomeView({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget builder(
|
||||
BuildContext context,
|
||||
HomeViewModel viewModel,
|
||||
Widget? child,
|
||||
) {
|
||||
return Scaffold(
|
||||
body: SafeArea(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 25.0),
|
||||
child: Center(
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
verticalSpaceLarge,
|
||||
Column(
|
||||
children: [
|
||||
const Text(
|
||||
'Hello, STACKED!',
|
||||
style: TextStyle(
|
||||
fontSize: 35,
|
||||
fontWeight: FontWeight.w900,
|
||||
),
|
||||
),
|
||||
verticalSpaceMedium,
|
||||
MaterialButton(
|
||||
color: Colors.black,
|
||||
onPressed: viewModel.incrementCounter,
|
||||
child: Text(
|
||||
viewModel.counterLabel,
|
||||
style: const TextStyle(color: Colors.white),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
MaterialButton(
|
||||
color: kcDarkGreyColor,
|
||||
onPressed: viewModel.showDialog,
|
||||
child: const Text(
|
||||
'Show Dialog',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
),
|
||||
),
|
||||
),
|
||||
MaterialButton(
|
||||
color: kcDarkGreyColor,
|
||||
onPressed: viewModel.showBottomSheet,
|
||||
child: const Text(
|
||||
'Show Bottom Sheet',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
HomeViewModel viewModelBuilder(
|
||||
BuildContext context,
|
||||
) =>
|
||||
HomeViewModel();
|
||||
}
|
||||
Reference in New Issue
Block a user