Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ASD_Detection
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2023-161
ASD_Detection
Commits
901774e7
Commit
901774e7
authored
Sep 09, 2023
by
Wijegunarathna K. P. S. G. G.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Develop Component 01 introduction page.
parent
279c2b33
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
Frontend/lib/pages/Comp1/Comp1Intro.dart
Frontend/lib/pages/Comp1/Comp1Intro.dart
+35
-0
No files found.
Frontend/lib/pages/Comp1/Comp1Intro.dart
0 → 100644
View file @
901774e7
import
'package:Autism/widgets/Button.dart'
;
import
'package:Autism/widgets/Header.dart'
;
import
'package:flutter/material.dart'
;
import
'package:Autism/MyStyles.dart'
as
MyStyles
;
class
Comp1Intro
extends
StatefulWidget
{
const
Comp1Intro
({
super
.
key
});
@override
State
<
Comp1Intro
>
createState
()
=>
_Comp1IntroState
();
}
class
_Comp1IntroState
extends
State
<
Comp1Intro
>
{
@override
Widget
build
(
BuildContext
context
)
{
void
nextPage
(
String
route
)
{
Navigator
.
pushNamedAndRemoveUntil
(
context
,
route
,(
r
)
=>
false
,
arguments:
{});
}
return
Column
(
children:
[
SizedBox
(
height:
20
,),
Header
(
title:
'කැමති ක්රියාකාරකම තෝරන්න'
),
SizedBox
(
height:
30
,),
Button
(
route:
'/Comp1Step1First'
,
title:
'පින්තුරයක් බලා කතන්දර කියවීම'
,
bg:
MyStyles
.
cbtnPrimary
),
SizedBox
(
height:
30
,),
Button
(
route:
'/Comp1Step2'
,
title:
'කැමති කතාවක් කීම'
,
bg:
MyStyles
.
cbtnPrimary
),
SizedBox
(
width:
180
,
child:
Image
.
asset
(
'assets/images/Component 1 - img 02.png'
)
),
],
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment