Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
netrain_flutter_app
Project
Project
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
邹志胜
netrain_flutter_app
Commits
fd93b7de
Commit
fd93b7de
authored
Jul 09, 2021
by
jishuaishuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
0c56b7ac
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
4 deletions
+29
-4
project.pbxproj
netrain_flutter_app/ios/Runner.xcodeproj/project.pbxproj
+4
-4
student.dart
netrain_flutter_app/lib/jishuaishuai/student.dart
+21
-0
main.dart
netrain_flutter_app/lib/main.dart
+4
-0
No files found.
netrain_flutter_app/ios/Runner.xcodeproj/project.pbxproj
View file @
fd93b7de
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
archiveVersion
=
1
;
archiveVersion
=
1
;
classes
=
{
classes
=
{
};
};
objectVersion
=
5
0
;
objectVersion
=
5
1
;
objects
=
{
objects
=
{
/* Begin PBXBuildFile section */
/* Begin PBXBuildFile section */
...
@@ -355,7 +355,7 @@
...
@@ -355,7 +355,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
CLANG_ENABLE_MODULES
=
YES
;
CLANG_ENABLE_MODULES
=
YES
;
CURRENT_PROJECT_VERSION
=
"$(FLUTTER_BUILD_NUMBER)"
;
CURRENT_PROJECT_VERSION
=
"$(FLUTTER_BUILD_NUMBER)"
;
DEVELOPMENT_TEAM
=
K5YZT8RS9U
;
DEVELOPMENT_TEAM
=
4TYNTWZC9Y
;
ENABLE_BITCODE
=
NO
;
ENABLE_BITCODE
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
FRAMEWORK_SEARCH_PATHS
=
(
"$(inherited)"
,
"$(inherited)"
,
...
@@ -493,7 +493,7 @@
...
@@ -493,7 +493,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
CLANG_ENABLE_MODULES
=
YES
;
CLANG_ENABLE_MODULES
=
YES
;
CURRENT_PROJECT_VERSION
=
"$(FLUTTER_BUILD_NUMBER)"
;
CURRENT_PROJECT_VERSION
=
"$(FLUTTER_BUILD_NUMBER)"
;
DEVELOPMENT_TEAM
=
K5YZT8RS9U
;
DEVELOPMENT_TEAM
=
4TYNTWZC9Y
;
ENABLE_BITCODE
=
NO
;
ENABLE_BITCODE
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
FRAMEWORK_SEARCH_PATHS
=
(
"$(inherited)"
,
"$(inherited)"
,
...
@@ -525,7 +525,7 @@
...
@@ -525,7 +525,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
ASSETCATALOG_COMPILER_APPICON_NAME
=
AppIcon
;
CLANG_ENABLE_MODULES
=
YES
;
CLANG_ENABLE_MODULES
=
YES
;
CURRENT_PROJECT_VERSION
=
"$(FLUTTER_BUILD_NUMBER)"
;
CURRENT_PROJECT_VERSION
=
"$(FLUTTER_BUILD_NUMBER)"
;
DEVELOPMENT_TEAM
=
K5YZT8RS9U
;
DEVELOPMENT_TEAM
=
4TYNTWZC9Y
;
ENABLE_BITCODE
=
NO
;
ENABLE_BITCODE
=
NO
;
FRAMEWORK_SEARCH_PATHS
=
(
FRAMEWORK_SEARCH_PATHS
=
(
"$(inherited)"
,
"$(inherited)"
,
...
...
netrain_flutter_app/lib/jishuaishuai/student.dart
View file @
fd93b7de
...
@@ -4,6 +4,27 @@ import 'dart:html';
...
@@ -4,6 +4,27 @@ import 'dart:html';
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
class
jssPageDemo
extends
StatelessWidget
{
// const ({Key? key}) : super(key: key)
@override
Widget
build
(
BuildContext
context
)
{
return
Container
(
child:
Column
(
children:
[
textDemo
(),
buttonDemo
(),
imageiconDemo
(),
],
)
);
}
}
class
textDemo
extends
StatelessWidget
{
class
textDemo
extends
StatelessWidget
{
// const ({Key? key}) : super(key: key);
// const ({Key? key}) : super(key: key);
...
...
netrain_flutter_app/lib/main.dart
View file @
fd93b7de
...
@@ -9,6 +9,8 @@ import 'laishanqi/netrain/user/loginPage.dart';
...
@@ -9,6 +9,8 @@ import 'laishanqi/netrain/user/loginPage.dart';
import
'laishanqi/netrain/user/RegisterPage.dart'
;
import
'laishanqi/netrain/user/RegisterPage.dart'
;
import
'laishanqi/photo.dart'
;
import
'laishanqi/photo.dart'
;
import
'jishuaishuai/student.dart'
;
import
'zhangfeng/LoginPage.dart'
;
import
'zhangfeng/LoginPage.dart'
;
void
main
(
)
{
void
main
(
)
{
...
@@ -43,6 +45,7 @@ class MyApp extends StatelessWidget {
...
@@ -43,6 +45,7 @@ class MyApp extends StatelessWidget {
"photo"
:
(
context
)
=>
PhotoApp
(),
"photo"
:
(
context
)
=>
PhotoApp
(),
"register"
:
(
context
)
=>
RegisterPage
(),
"register"
:
(
context
)
=>
RegisterPage
(),
"listPage"
:(
context
)
=>
List_Page
(),
"listPage"
:(
context
)
=>
List_Page
(),
"student"
:(
context
)
=>
jssPageDemo
()
},
},
),
onWillPop:
()
async
{
),
onWillPop:
()
async
{
Fluttertoast
.
showToast
(
msg:
"退出"
);
Fluttertoast
.
showToast
(
msg:
"退出"
);
...
@@ -83,6 +86,7 @@ class _RouterNavigatorState extends State<RouterNavigator> {
...
@@ -83,6 +86,7 @@ class _RouterNavigatorState extends State<RouterNavigator> {
_item
(
"登陆"
,
LoginPage
(),
'login'
),
_item
(
"登陆"
,
LoginPage
(),
'login'
),
_item
(
"登录网络请求"
,
LoginRequestPage
(),
'loginRequest'
),
_item
(
"登录网络请求"
,
LoginRequestPage
(),
'loginRequest'
),
_item
(
"listview页面"
,
List_Page
(),
'listPage'
),
_item
(
"listview页面"
,
List_Page
(),
'listPage'
),
_item
(
"jssDemo"
,
jssPageDemo
(),
'student'
)
],
],
),
),
);
);
...
...
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