1
0
Fork 0

add 目录结构说明;iPad上运行适配

master
wanghualei 2022-08-12 13:24:28 +08:00
parent b2de97e9ef
commit c9679345ac
2 changed files with 111 additions and 2 deletions

107
README.md
View File

@ -159,6 +159,90 @@ class _MyAppState extends State<MyApp> {
} }
``` ```
## 📘
```
.
LICENSE
README.md
android
   app
      build.gradle
      src
      debug
         AndroidManifest.xml
      main
         AndroidManifest.xml
         java
            com
               finogeeks
               mop_demo
               MainActivity.java
            io
            flutter
            plugins
            GeneratedPluginRegistrant.java
         res
         drawable darwable
            launch_background.xml
         mipmap-hdpi
            ic_launcher.png
         mipmap-mdpi
            ic_launcher.png
         mipmap-xhdpi
            ic_launcher.png
         mipmap-xxhdpi
            ic_launcher.png
         mipmap-xxxhdpi
            ic_launcher.png
         values
         styles.xml
      profile
      AndroidManifest.xml
   build.gradle
   gradle gradle
      wrapper
      gradle-wrapper.properties
   gradle.properties
   local.properties
   settings.gradle
build
doc
   mop_flutter_demo.gif
ios iOS
   Flutter Flutter-SDK
      AppFrameworkInfo.plist
      Debug.xcconfig
      Flutter.framework
      Flutter.podspec
      Generated.xcconfig
      Release.xcconfig
      flutter_export_environment.sh
   Podfile pod
   Runner iOS
      AppDelegate.h
      AppDelegate.m
      Assets.xcassets
         AppIcon.appiconset
         LaunchImage.imageset
      Base.lproj
         LaunchScreen.storyboard
         Main.storyboard
      FATFlutterViewController.h Flutter
      FATFlutterViewController.m Flutter
      GeneratedPluginRegistrant.h
      GeneratedPluginRegistrant.m
      Info.plist iOS
      main.m
   Runner.xcodeproj
lib Flutter
   main.dart
   wx_pay.dart
pubspec.lock
pubspec.yaml Flutter
test
widget_test.dart
```
## 📋 ## 📋
### 1. ### 1.
@ -303,6 +387,29 @@ module.exports = {
} }
``` ```
## 📘
```
.
.github
.vscode
android Android
ios iOS
lib Flutter
main.dart
wx_pay.dart
test
pubspec.yaml Flutter
```
## 🔗 ## 🔗
FinClip FinClip

View File

@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string> <string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
@ -26,6 +28,8 @@
<string>LaunchScreen</string> <string>LaunchScreen</string>
<key>UIMainStoryboardFile</key> <key>UIMainStoryboardFile</key>
<string>Main</string> <string>Main</string>
<key>UIRequiresFullScreen</key>
<true/>
<key>UISupportedInterfaceOrientations</key> <key>UISupportedInterfaceOrientations</key>
<array> <array>
<string>UIInterfaceOrientationPortrait</string> <string>UIInterfaceOrientationPortrait</string>
@ -41,7 +45,5 @@
</array> </array>
<key>UIViewControllerBasedStatusBarAppearance</key> <key>UIViewControllerBasedStatusBarAppearance</key>
<false/> <false/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
</dict> </dict>
</plist> </plist>