Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
NBT_APP
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2F-ART
NBT_APP
Commits
3fbbacce
Commit
3fbbacce
authored
Mar 17, 2022
by
Nuttee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update schedule ui screen
parent
aa3d770e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
382 additions
and
3 deletions
+382
-3
android/build.gradle
+1
-1
lib/components/drawer.dart
+10
-1
lib/main.dart
+1
-0
lib/screen/favorite/favouriteList_Page.dart
+5
-1
lib/screen/schedule/schedule_page.dart
+365
-0
No files found.
android/build.gradle
View file @
3fbbacce
buildscript
{
ext
.
kotlin_version
=
'1.
6.1
0'
ext
.
kotlin_version
=
'1.
3.5
0'
repositories
{
google
()
mavenCentral
()
...
...
lib/components/drawer.dart
View file @
3fbbacce
...
...
@@ -6,6 +6,7 @@ import 'package:nbt_app/screen/login/login_page.dart';
import
'package:nbt_app/screen/news/news_page.dart'
;
import
'package:nbt_app/screen/notification/FavouriteList_Page.dart'
;
import
'package:nbt_app/screen/rewind/rewind_search_page.dart'
;
import
'package:nbt_app/screen/schedule/schedule_page.dart'
;
class
NBTDrawer
extends
StatefulWidget
{
const
NBTDrawer
({
Key
?
key
})
:
super
(
key:
key
);
...
...
@@ -621,7 +622,14 @@ class _NBTDrawerState extends State<NBTDrawer> {
SizedBox
(
height:
10
.
h
,
),
Row
(
GestureDetector
(
onTap:
()
{
setState
(()
{
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)
=>
SchedulePage
()));
});
},
child:
Row
(
children:
[
SizedBox
(
width:
20
.
w
,
...
...
@@ -646,6 +654,7 @@ class _NBTDrawerState extends State<NBTDrawer> {
),
],
),
),
SizedBox
(
height:
10
.
h
,
),
...
...
lib/main.dart
View file @
3fbbacce
import
'package:flutter/material.dart'
;
import
'package:nbt_app/components/appbar_logo.dart'
;
import
'package:nbt_app/components/bottombar.dart'
;
import
'package:nbt_app/screen/favorite/favouriteList_Page.dart'
;
import
'package:nbt_app/screen/home/home_page.dart'
;
import
'package:nbt_app/screen/splashscreen/splashscreen_page.dart'
;
...
...
lib/screen/favorite/favouriteList_Page.dart
View file @
3fbbacce
...
...
@@ -184,7 +184,11 @@ class _FavouriteListPageState extends State<FavouriteListPage>
],
),
)
]))));
]
)
)
)
);
}
}
...
...
lib/screen/schedule/schedule_page.dart
0 → 100644
View file @
3fbbacce
This diff is collapsed.
Click to expand it.
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