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
c2ffe57c
Commit
c2ffe57c
authored
Oct 22, 2023
by
RSRGJN Ananda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Component 2 intro page
parent
07f3f08f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
Frontend/lib/pages/Comp2/Comp2Page1.dart
Frontend/lib/pages/Comp2/Comp2Page1.dart
+29
-0
No files found.
Frontend/lib/pages/Comp2/Comp2Page1.dart
0 → 100644
View file @
c2ffe57c
import
'package:Autism/widgets/ButtonXl.dart'
;
import
'package:flutter/material.dart'
;
import
'package:Autism/MyStyles.dart'
as
MyStyles
;
class
Comp2Page1
extends
StatefulWidget
{
const
Comp2Page1
({
super
.
key
});
@override
State
<
Comp2Page1
>
createState
()
=>
_Comp2Page1State
();
}
class
_Comp2Page1State
extends
State
<
Comp2Page1
>
{
@override
Widget
build
(
BuildContext
context
)
{
void
nextPage
(
String
route
)
{
Navigator
.
pushNamedAndRemoveUntil
(
context
,
route
,(
r
)
=>
false
,
arguments:
{});
}
return
Column
(
children:
[
SizedBox
(
width:
180
,
child:
Image
.
asset
(
'assets/images/Component 2 - img 01.png'
)
),
SizedBox
(
height:
30
,),
ButtonXL
(
route:
'/Comp2Page2'
,
title:
'ආරම්භ කරන්න'
,
bg:
MyStyles
.
cbtnPrimary
),
],
);
}
}
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