Add product name to the welcome page.

parent 091e23b1
......@@ -43,7 +43,7 @@ class MyApp extends StatelessWidget {
appbar: false,
),
'/home': (context) => MyTemplate(
title: 'කළ යුතු කාර්යය',
title: 'මුල්ම පියවර',
child: Home(),
bg: MyStyles.cPrimary,
appbar: true,
......
......@@ -62,6 +62,18 @@ class _HomeState extends State<Home> {
return Column(
children: [
Text(
'කල යුතු කාර්යයන්',
style: TextStyle(
fontSize: 38.0,
fontWeight: FontWeight.bold,
color: MyStyles.cWhite,
),
),
SizedBox(
width: 250,
height: 30,
),
Container(
width: buttonWidth,
height: buttonHeight,
......
......@@ -19,6 +19,18 @@ class _WelcomeState extends State<Welcome> {
return Column(
children: [
Text(
'මුල්ම පියවර',
style: TextStyle(
fontSize: 58.0,
fontWeight: FontWeight.bold,
color: MyStyles.cWhite,
),
),
SizedBox(
width: 250,
height: 30,
),
SizedBox(
width: 200, child: Image.asset('assets/images/Home page img.png')),
SizedBox(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment