This repository was archived by the owner on Jan 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +81
-11
lines changed Expand file tree Collapse file tree 8 files changed +81
-11
lines changed Original file line number Diff line number Diff line change 1
1
# This file tracks properties of this Flutter project.
2
2
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3
3
#
4
- # This file should be version controlled.
4
+ # This file should be version controlled and should not be manually edited .
5
5
6
6
version:
7
- revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
8
- channel: stable
7
+ revision: "17025dd88227cd9532c33fa78f5250d548d87e9a"
8
+ channel: " stable"
9
9
10
10
project_type: app
11
11
12
12
# Tracks metadata for the flutter migrate command
13
13
migration:
14
14
platforms:
15
15
- platform: root
16
- create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
17
- base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
18
- - platform: android
19
- create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
20
- base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
21
- - platform: ios
22
- create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
23
- base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
16
+ create_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
17
+ base_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
18
+ - platform: web
19
+ create_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
20
+ base_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
24
21
25
22
# User provided section
26
23
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ <!--
5
+ If you are serving your web app in a path other than the root, change the
6
+ href value below to reflect the base path you are serving from.
7
+
8
+ The path provided below has to start and end with a slash "/" in order for
9
+ it to work correctly.
10
+
11
+ For more details:
12
+ * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
13
+
14
+ This is a placeholder for base href that will be replaced by the value of
15
+ the `--base-href` argument provided to `flutter build`.
16
+ -->
17
+ < base href ="$FLUTTER_BASE_HREF ">
18
+
19
+ < meta charset ="UTF-8 ">
20
+ < meta content ="IE=Edge " http-equiv ="X-UA-Compatible ">
21
+ < meta name ="description " content ="A feedback management web app for TrainLCD Project. ">
22
+
23
+ <!-- iOS meta tags & icons -->
24
+ < meta name ="mobile-web-app-capable " content ="yes ">
25
+ < meta name ="apple-mobile-web-app-status-bar-style " content ="black ">
26
+ < meta name ="apple-mobile-web-app-title " content ="csapp ">
27
+ < link rel ="apple-touch-icon " href ="icons/Icon-192.png ">
28
+
29
+ <!-- Favicon -->
30
+ < link rel ="icon " type ="image/png " href ="favicon.png "/>
31
+
32
+ < title > csapp</ title >
33
+ < link rel ="manifest " href ="manifest.json ">
34
+ </ head >
35
+ < body >
36
+ < script src ="flutter_bootstrap.js " async > </ script >
37
+ </ body >
38
+ </ html >
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " TrainLCD CS MUI" ,
3
+ "short_name" : " CS" ,
4
+ "start_url" : " ." ,
5
+ "display" : " standalone" ,
6
+ "background_color" : " #277BC0" ,
7
+ "theme_color" : " #277BC0" ,
8
+ "description" : " A feedback management web app for TrainLCD Project." ,
9
+ "orientation" : " portrait-primary" ,
10
+ "prefer_related_applications" : false ,
11
+ "icons" : [
12
+ {
13
+ "src" : " icons/Icon-192.png" ,
14
+ "sizes" : " 192x192" ,
15
+ "type" : " image/png"
16
+ },
17
+ {
18
+ "src" : " icons/Icon-512.png" ,
19
+ "sizes" : " 512x512" ,
20
+ "type" : " image/png"
21
+ },
22
+ {
23
+ "src" : " icons/Icon-maskable-192.png" ,
24
+ "sizes" : " 192x192" ,
25
+ "type" : " image/png" ,
26
+ "purpose" : " maskable"
27
+ },
28
+ {
29
+ "src" : " icons/Icon-maskable-512.png" ,
30
+ "sizes" : " 512x512" ,
31
+ "type" : " image/png" ,
32
+ "purpose" : " maskable"
33
+ }
34
+ ]
35
+ }
You can’t perform that action at this time.
0 commit comments