-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from NKUST-ITC/develop
Update to v3.1.11
- Loading branch information
Showing
37 changed files
with
737 additions
and
630 deletions.
There are no files selected for viewing
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildSystemType</key> | ||
<string>Original</string> | ||
</dict> | ||
<dict/> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import 'dart:io'; | ||
|
||
import 'package:flutter/material.dart'; | ||
import 'package:nkust_ap/res/assets.dart'; | ||
import 'package:nkust_ap/res/resource.dart' as Resource; | ||
import 'package:nkust_ap/utils/global.dart'; | ||
|
||
|
@@ -62,7 +63,7 @@ class AboutUsPageState extends State<AboutUsPage> | |
backgroundColor: Resource.Colors.blue, | ||
flexibleSpace: FlexibleSpaceBar( | ||
background: Image.asset( | ||
"assets/images/kuasap2.webp", | ||
ImageAssets.kuasap2, | ||
fit: BoxFit.cover, | ||
), | ||
), | ||
|
@@ -84,7 +85,7 @@ class AboutUsPageState extends State<AboutUsPage> | |
child: Align( | ||
alignment: Alignment.topRight, | ||
child: Image.asset( | ||
"assets/images/kuas_itc.webp", | ||
ImageAssets.kuasITC, | ||
width: 64.0, | ||
fit: BoxFit.cover, | ||
), | ||
|
@@ -116,7 +117,7 @@ class AboutUsPageState extends State<AboutUsPage> | |
mainAxisAlignment: MainAxisAlignment.spaceBetween, | ||
children: <Widget>[ | ||
IconButton( | ||
icon: Image.asset("assets/images/ic_fb.webp"), | ||
icon: Image.asset(ImageAssets.fb), | ||
onPressed: () { | ||
if (Platform.isAndroid) | ||
Utils.launchUrl('fb://page/735951703168873') | ||
|
@@ -136,7 +137,7 @@ class AboutUsPageState extends State<AboutUsPage> | |
iconSize: 48.0, | ||
), | ||
IconButton( | ||
icon: Image.asset("assets/images/ic_github.webp"), | ||
icon: Image.asset(ImageAssets.github), | ||
onPressed: () { | ||
if (Platform.isAndroid) | ||
Utils.launchUrl( | ||
|
@@ -154,7 +155,7 @@ class AboutUsPageState extends State<AboutUsPage> | |
iconSize: 48.0, | ||
), | ||
IconButton( | ||
icon: Image.asset("assets/images/ic_email.webp"), | ||
icon: Image.asset(ImageAssets.email), | ||
onPressed: () { | ||
Utils.launchUrl('mailto:[email protected]') | ||
.catchError((onError) => Utils.showToast( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.