Add product name to the welcome page.

parent 091e23b1
...@@ -43,7 +43,7 @@ class MyApp extends StatelessWidget { ...@@ -43,7 +43,7 @@ class MyApp extends StatelessWidget {
appbar: false, appbar: false,
), ),
'/home': (context) => MyTemplate( '/home': (context) => MyTemplate(
title: 'කළ යුතු කාර්යය', title: 'මුල්ම පියවර',
child: Home(), child: Home(),
bg: MyStyles.cPrimary, bg: MyStyles.cPrimary,
appbar: true, appbar: true,
......
...@@ -62,6 +62,18 @@ class _HomeState extends State<Home> { ...@@ -62,6 +62,18 @@ class _HomeState extends State<Home> {
return Column( return Column(
children: [ children: [
Text(
'කල යුතු කාර්යයන්',
style: TextStyle(
fontSize: 38.0,
fontWeight: FontWeight.bold,
color: MyStyles.cWhite,
),
),
SizedBox(
width: 250,
height: 30,
),
Container( Container(
width: buttonWidth, width: buttonWidth,
height: buttonHeight, height: buttonHeight,
......
...@@ -19,6 +19,18 @@ class _WelcomeState extends State<Welcome> { ...@@ -19,6 +19,18 @@ class _WelcomeState extends State<Welcome> {
return Column( return Column(
children: [ children: [
Text(
'මුල්ම පියවර',
style: TextStyle(
fontSize: 58.0,
fontWeight: FontWeight.bold,
color: MyStyles.cWhite,
),
),
SizedBox(
width: 250,
height: 30,
),
SizedBox( SizedBox(
width: 200, child: Image.asset('assets/images/Home page img.png')), width: 200, child: Image.asset('assets/images/Home page img.png')),
SizedBox( 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