Skip to content

Commit 49370e1

Browse files
author
ruiyu
committed
添加宽度
1 parent 8ef5a58 commit 49370e1

File tree

18 files changed

+28
-46
lines changed

18 files changed

+28
-46
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import 'package:gesture_password/mini_gesture_password.dart';
3232
```
3333

3434
##属性
35+
* width 空间宽度(xia-weiyang想法)
3536
* selectedColor 选中的颜色
3637
* normalColor: 没选中的颜色
3738
* lineStrokeWidth: 线宽

example/.metadata

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: 44b7e7d3f42f050a79712daab253af06e9daf530
7+
revision: c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
88
channel: beta

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ android {
2323

2424
defaultConfig {
2525
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
26-
applicationId "com.yourcompany.example"
26+
applicationId "com.example.example"
2727
minSdkVersion 16
2828
targetSdkVersion 27
2929
versionCode 1

example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.yourcompany.example">
2+
package="com.example.example">
33

44
<!-- The INTERNET permission is required for development. Specifically,
55
flutter needs it to communicate with the running application

example/android/app/src/main/java/com/yourcompany/example/MainActivity.java

Lines changed: 0 additions & 14 deletions
This file was deleted.

example/ios/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ Icon?
4242
/ServiceDefinitions.json
4343

4444
Pods/
45+
.symlinks/

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
23-
<key>UIRequiredDeviceCapabilities</key>
24-
<array>
25-
<string>arm64</string>
26-
</array>
2723
<key>MinimumOSVersion</key>
2824
<string>8.0</string>
2925
</dict>

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,6 @@
369369
isa = XCBuildConfiguration;
370370
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
371371
buildSettings = {
372-
ARCHS = arm64;
373372
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
374373
CURRENT_PROJECT_VERSION = 1;
375374
ENABLE_BITCODE = NO;
@@ -383,7 +382,7 @@
383382
"$(inherited)",
384383
"$(PROJECT_DIR)/Flutter",
385384
);
386-
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.example;
385+
PRODUCT_BUNDLE_IDENTIFIER = com.example.example;
387386
PRODUCT_NAME = "$(TARGET_NAME)";
388387
VERSIONING_SYSTEM = "apple-generic";
389388
};
@@ -393,7 +392,6 @@
393392
isa = XCBuildConfiguration;
394393
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
395394
buildSettings = {
396-
ARCHS = arm64;
397395
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
398396
CURRENT_PROJECT_VERSION = 1;
399397
ENABLE_BITCODE = NO;
@@ -407,7 +405,7 @@
407405
"$(inherited)",
408406
"$(PROJECT_DIR)/Flutter",
409407
);
410-
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.example;
408+
PRODUCT_BUNDLE_IDENTIFIER = com.example.example;
411409
PRODUCT_NAME = "$(TARGET_NAME)";
412410
VERSIONING_SYSTEM = "apple-generic";
413411
};

example/ios/Runner/AppDelegate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#import <UIKit/UIKit.h>
21
#import <Flutter/Flutter.h>
2+
#import <UIKit/UIKit.h>
33

44
@interface AppDelegate : FlutterAppDelegate
55

example/ios/Runner/AppDelegate.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
@implementation AppDelegate
55

6-
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
6+
- (BOOL)application:(UIApplication *)application
7+
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
78
[GeneratedPluginRegistrant registerWithRegistry:self];
89
// Override point for customization after application launch.
910
return [super application:application didFinishLaunchingWithOptions:launchOptions];

0 commit comments

Comments
 (0)