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
75bc034e
Commit
75bc034e
authored
Nov 01, 2023
by
Wijegunarathna K. P. S. G. G.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add titles to speech abnormality pages.
parent
e8679a76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
15 deletions
+33
-15
Frontend/lib/main.dart
Frontend/lib/main.dart
+7
-7
Frontend/lib/pages/Comp1/Comp1Welcome.dart
Frontend/lib/pages/Comp1/Comp1Welcome.dart
+26
-8
No files found.
Frontend/lib/main.dart
View file @
75bc034e
...
@@ -43,43 +43,43 @@ class MyApp extends StatelessWidget {
...
@@ -43,43 +43,43 @@ 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
,
),
),
'/Comp1Welcome'
:
(
context
)
=>
MyTemplate
(
'/Comp1Welcome'
:
(
context
)
=>
MyTemplate
(
title:
'
පළමු කාර්යය
'
,
title:
'
මුල්ම පියවර-කථන අසාමාන්යතාවයන් හදුනා ගැනීම
'
,
child:
Comp1Welcome
(),
child:
Comp1Welcome
(),
bg:
MyStyles
.
cPrimary
,
bg:
MyStyles
.
cPrimary
,
appbar:
true
,
appbar:
true
,
),
),
'/Comp1Intro'
:
(
context
)
=>
MyTemplate
(
'/Comp1Intro'
:
(
context
)
=>
MyTemplate
(
title:
'
පළමු කාර්යය
'
,
title:
'
මුල්ම පියවර-කථන අසාමාන්යතාවයන් හදුනා ගැනීම
'
,
child:
Comp1Intro
(),
child:
Comp1Intro
(),
bg:
MyStyles
.
cPrimary
,
bg:
MyStyles
.
cPrimary
,
appbar:
true
,
appbar:
true
,
),
),
'/Comp1Step1First'
:
(
context
)
=>
MyTemplate
(
'/Comp1Step1First'
:
(
context
)
=>
MyTemplate
(
title:
'
පළමු කාර්යය
'
,
title:
'
මුල්ම පියවර-කථන අසාමාන්යතාවයන් හදුනා ගැනීම
'
,
child:
Comp1Step1First
(),
child:
Comp1Step1First
(),
bg:
MyStyles
.
cPrimary
,
bg:
MyStyles
.
cPrimary
,
appbar:
true
,
appbar:
true
,
),
),
'/Comp1Step1Second'
:
(
context
)
=>
MyTemplate
(
'/Comp1Step1Second'
:
(
context
)
=>
MyTemplate
(
title:
'
පළමු කාර්යය
'
,
title:
'
මුල්ම පියවර-කථන අසාමාන්යතාවයන් හදුනා ගැනීම
'
,
child:
Comp1Step1Second
(),
child:
Comp1Step1Second
(),
bg:
MyStyles
.
cPrimary
,
bg:
MyStyles
.
cPrimary
,
appbar:
true
,
appbar:
true
,
),
),
'/Comp1Step1Third'
:
(
context
)
=>
MyTemplate
(
'/Comp1Step1Third'
:
(
context
)
=>
MyTemplate
(
title:
'
පළමු කාර්යය
'
,
title:
'
මුල්ම පියවර-කථන අසාමාන්යතාවයන් හදුනා ගැනීම
'
,
child:
Comp1Step1Third
(),
child:
Comp1Step1Third
(),
bg:
MyStyles
.
cPrimary
,
bg:
MyStyles
.
cPrimary
,
appbar:
true
,
appbar:
true
,
),
),
'/Comp1Step2'
:
(
context
)
=>
MyTemplate
(
'/Comp1Step2'
:
(
context
)
=>
MyTemplate
(
title:
'
පළමු කාර්යය
'
,
title:
'
මුල්ම පියවර-කථන අසාමාන්යතාවයන් හදුනා ගැනීම
'
,
child:
Comp1Step2
(),
child:
Comp1Step2
(),
bg:
MyStyles
.
cPrimary
,
bg:
MyStyles
.
cPrimary
,
appbar:
true
,
appbar:
true
,
...
...
Frontend/lib/pages/Comp1/Comp1Welcome.dart
View file @
75bc034e
...
@@ -12,18 +12,36 @@ class Comp1Welcome extends StatefulWidget {
...
@@ -12,18 +12,36 @@ class Comp1Welcome extends StatefulWidget {
class
_Comp1WelcomeState
extends
State
<
Comp1Welcome
>
{
class
_Comp1WelcomeState
extends
State
<
Comp1Welcome
>
{
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
void
nextPage
(
String
route
)
{
void
nextPage
(
String
route
)
{
Navigator
.
pushNamedAndRemoveUntil
(
context
,
route
,(
r
)
=>
false
,
arguments:
{});
Navigator
.
pushNamedAndRemoveUntil
(
context
,
route
,
(
r
)
=>
false
,
arguments:
{});
}
}
return
Column
(
return
Column
(
children:
[
children:
[
SizedBox
(
width:
180
,
child:
Text
(
Image
.
asset
(
'assets/images/Component 1 - img 01.png'
)
'කථන අසාමාන්යතාවයන් හදුනා ගැනීම'
,
style:
TextStyle
(
fontSize:
30.0
,
fontWeight:
FontWeight
.
bold
,
color:
MyStyles
.
cWhite
,
),
),
SizedBox
(
width:
250
,
height:
10
,
),
SizedBox
(
width:
180
,
child:
Image
.
asset
(
'assets/images/Component 1 - img 01.png'
)),
SizedBox
(
height:
30
,
),
),
SizedBox
(
height:
30
,),
ButtonXL
(
ButtonXL
(
route:
'/Comp1Intro'
,
title:
'ආරම්භ කරන්න'
,
bg:
MyStyles
.
cbtnPrimary
),
route:
'/Comp1Intro'
,
],
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