react-native-pointr 9.5.0 → 9.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/API_REFERENCE.md +1035 -557
- package/CHANGELOG.md +12 -0
- package/README.md +75 -216
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/pointr/PTRMapWidgetManager.kt +156 -0
- package/ios/PTRMapWidgetContainerView.swift +179 -1
- package/ios/PTRMapWidgetManager-Bridging.m +6 -0
- package/ios/PTRNativeLibrary.swift +14 -0
- package/package.json +30 -6
- package/react-native-pointr.podspec +1 -1
- package/src/PTRMapWidgetUtils.ts +2 -8
- package/src/api/MapWidgetApi.ts +45 -0
- package/src/api/PointrSdk.ts +241 -0
- package/src/api/index.ts +9 -0
- package/src/commands/index.ts +275 -0
- package/src/components/index.tsx +130 -0
- package/src/constants/index.ts +104 -0
- package/src/hooks/index.ts +8 -0
- package/src/hooks/usePointrEvents.ts +40 -0
- package/src/hooks/usePointrPois.ts +41 -0
- package/src/hooks/usePointrPosition.ts +31 -0
- package/src/hooks/usePointrSdk.ts +41 -0
- package/src/index.tsx +87 -7
- package/src/{PTRPoiManager.ts → managers/PTRPoiManager.ts} +1 -1
- package/src/types/config.ts +57 -0
- package/src/types/events.ts +106 -0
- package/src/types/index.ts +35 -0
- package/.vscode/settings.json +0 -21
- package/example/pointr_rn_demo/.bundle/config +0 -2
- package/example/pointr_rn_demo/.eslintrc.js +0 -4
- package/example/pointr_rn_demo/.prettierrc.js +0 -5
- package/example/pointr_rn_demo/.watchmanconfig +0 -1
- package/example/pointr_rn_demo/App.tsx +0 -323
- package/example/pointr_rn_demo/Gemfile +0 -16
- package/example/pointr_rn_demo/Gemfile.lock +0 -111
- package/example/pointr_rn_demo/README.md +0 -188
- package/example/pointr_rn_demo/__tests__/App.test.tsx +0 -13
- package/example/pointr_rn_demo/android/app/build.gradle +0 -119
- package/example/pointr_rn_demo/android/app/debug.keystore +0 -0
- package/example/pointr_rn_demo/android/app/proguard-rules.pro +0 -10
- package/example/pointr_rn_demo/android/app/src/main/AndroidManifest.xml +0 -27
- package/example/pointr_rn_demo/android/app/src/main/java/com/pointr_rn_demo/MainActivity.kt +0 -22
- package/example/pointr_rn_demo/android/app/src/main/java/com/pointr_rn_demo/MainApplication.kt +0 -27
- package/example/pointr_rn_demo/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/pointr_rn_demo/android/app/src/main/res/values/strings.xml +0 -3
- package/example/pointr_rn_demo/android/app/src/main/res/values/styles.xml +0 -9
- package/example/pointr_rn_demo/android/build.gradle +0 -34
- package/example/pointr_rn_demo/android/gradle.properties +0 -44
- package/example/pointr_rn_demo/android/settings.gradle +0 -6
- package/example/pointr_rn_demo/app.json +0 -4
- package/example/pointr_rn_demo/babel.config.js +0 -3
- package/example/pointr_rn_demo/index.js +0 -16
- package/example/pointr_rn_demo/ios/.xcode.env +0 -11
- package/example/pointr_rn_demo/ios/Podfile +0 -40
- package/example/pointr_rn_demo/ios/pointr_rn_demo/AppDelegate.swift +0 -48
- package/example/pointr_rn_demo/ios/pointr_rn_demo/Images.xcassets/AppIcon.appiconset/Contents.json +0 -53
- package/example/pointr_rn_demo/ios/pointr_rn_demo/Images.xcassets/Contents.json +0 -6
- package/example/pointr_rn_demo/ios/pointr_rn_demo/Info.plist +0 -63
- package/example/pointr_rn_demo/ios/pointr_rn_demo/LaunchScreen.storyboard +0 -47
- package/example/pointr_rn_demo/ios/pointr_rn_demo/PrivacyInfo.xcprivacy +0 -37
- package/example/pointr_rn_demo/ios/pointr_rn_demo.xcodeproj/project.pbxproj +0 -488
- package/example/pointr_rn_demo/ios/pointr_rn_demo.xcodeproj/xcshareddata/xcschemes/pointr_rn_demo.xcscheme +0 -88
- package/example/pointr_rn_demo/ios/pointr_rn_demo.xcworkspace/contents.xcworkspacedata +0 -10
- package/example/pointr_rn_demo/jest.config.js +0 -3
- package/example/pointr_rn_demo/metro.config.js +0 -22
- package/example/pointr_rn_demo/package.json +0 -47
- package/example/pointr_rn_demo/prepare-demo-distribution.sh +0 -103
- package/example/pointr_rn_demo/tsconfig.json +0 -5
- package/prepare-distribution.sh +0 -151
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# Project-wide Gradle settings.
|
|
2
|
-
|
|
3
|
-
# IDE (e.g. Android Studio) users:
|
|
4
|
-
# Gradle settings configured through the IDE *will override*
|
|
5
|
-
# any settings specified in this file.
|
|
6
|
-
|
|
7
|
-
# For more details on how to configure your build environment visit
|
|
8
|
-
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
9
|
-
|
|
10
|
-
# Specifies the JVM arguments used for the daemon process.
|
|
11
|
-
# The setting is particularly useful for tweaking memory settings.
|
|
12
|
-
# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
|
|
13
|
-
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
|
|
14
|
-
|
|
15
|
-
# When configured, Gradle will run in incubating parallel mode.
|
|
16
|
-
# This option should only be used with decoupled projects. More details, visit
|
|
17
|
-
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
|
18
|
-
# org.gradle.parallel=true
|
|
19
|
-
|
|
20
|
-
# AndroidX package structure to make it clearer which packages are bundled with the
|
|
21
|
-
# Android operating system, and which are packaged with your app's APK
|
|
22
|
-
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
|
23
|
-
android.useAndroidX=true
|
|
24
|
-
|
|
25
|
-
# Use this property to specify which architecture you want to build.
|
|
26
|
-
# You can also override it from the CLI using
|
|
27
|
-
# ./gradlew <task> -PreactNativeArchitectures=x86_64
|
|
28
|
-
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
|
|
29
|
-
|
|
30
|
-
# Use this property to enable support to the new architecture.
|
|
31
|
-
# This will allow you to use TurboModules and the Fabric render in
|
|
32
|
-
# your application. You should enable this flag either if you want
|
|
33
|
-
# to write custom TurboModules/Fabric components OR use libraries that
|
|
34
|
-
# are providing them.
|
|
35
|
-
newArchEnabled=true
|
|
36
|
-
|
|
37
|
-
# Use this property to enable or disable the Hermes JS engine.
|
|
38
|
-
# If set to false, you will be using JSC instead.
|
|
39
|
-
hermesEnabled=true
|
|
40
|
-
|
|
41
|
-
# Use this property to enable edge-to-edge display support.
|
|
42
|
-
# This allows your app to draw behind system bars for an immersive UI.
|
|
43
|
-
# Note: Only works with ReactActivity and should not be used with custom Activity.
|
|
44
|
-
edgeToEdgeEnabled=false
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
|
|
2
|
-
plugins { id("com.facebook.react.settings") }
|
|
3
|
-
extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
|
|
4
|
-
rootProject.name = 'pointr_rn_demo'
|
|
5
|
-
include ':app'
|
|
6
|
-
includeBuild('../node_modules/@react-native/gradle-plugin')
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @format
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import { AppRegistry } from 'react-native';
|
|
6
|
-
import App from './App';
|
|
7
|
-
import { name as appName } from './app.json';
|
|
8
|
-
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
9
|
-
|
|
10
|
-
const AppWrapper = () => (
|
|
11
|
-
<SafeAreaProvider>
|
|
12
|
-
<App />
|
|
13
|
-
</SafeAreaProvider>
|
|
14
|
-
);
|
|
15
|
-
|
|
16
|
-
AppRegistry.registerComponent(appName, () => AppWrapper);
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# This `.xcode.env` file is versioned and is used to source the environment
|
|
2
|
-
# used when running script phases inside Xcode.
|
|
3
|
-
# To customize your local environment, you can create an `.xcode.env.local`
|
|
4
|
-
# file that is not versioned.
|
|
5
|
-
|
|
6
|
-
# NODE_BINARY variable contains the PATH to the node executable.
|
|
7
|
-
#
|
|
8
|
-
# Customize the NODE_BINARY variable here.
|
|
9
|
-
# For example, to use nvm with brew, add the following line
|
|
10
|
-
# . "$(brew --prefix nvm)/nvm.sh" --no-use
|
|
11
|
-
export NODE_BINARY=$(command -v node)
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
source "https://cdn.cocoapods.org/"
|
|
2
|
-
source "https://github.com/pointrlabs/public-podspecs.git"
|
|
3
|
-
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
|
4
|
-
ENV['POINTR_SDK_TOKEN'] = 'sv=2023-01-03&st=2024-10-23T06%3A40%3A13Z&se=2035-11-08T06%3A40%3A00Z&sr=c&sp=r&sig=WaCbhxt4pMqf9Oqzgf%2FnDj1SbdvyzwCtFdsWLW4KFqA%3D'
|
|
5
|
-
|
|
6
|
-
# Resolve react_native_pods.rb with node to allow for hoisting
|
|
7
|
-
require Pod::Executable.execute_command('node', ['-p',
|
|
8
|
-
'require.resolve(
|
|
9
|
-
"react-native/scripts/react_native_pods.rb",
|
|
10
|
-
{paths: [process.argv[1]]},
|
|
11
|
-
)', __dir__]).strip
|
|
12
|
-
|
|
13
|
-
platform :ios, min_ios_version_supported
|
|
14
|
-
prepare_react_native_project!
|
|
15
|
-
|
|
16
|
-
linkage = ENV['USE_FRAMEWORKS']
|
|
17
|
-
if linkage != nil
|
|
18
|
-
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
|
|
19
|
-
use_frameworks! :linkage => linkage.to_sym
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
target 'pointr_rn_demo' do
|
|
23
|
-
config = use_native_modules!
|
|
24
|
-
|
|
25
|
-
use_react_native!(
|
|
26
|
-
:path => config[:reactNativePath],
|
|
27
|
-
# An absolute path to your application root.
|
|
28
|
-
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
29
|
-
)
|
|
30
|
-
|
|
31
|
-
post_install do |installer|
|
|
32
|
-
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
|
|
33
|
-
react_native_post_install(
|
|
34
|
-
installer,
|
|
35
|
-
config[:reactNativePath],
|
|
36
|
-
:mac_catalyst_enabled => false,
|
|
37
|
-
# :ccache_enabled => true
|
|
38
|
-
)
|
|
39
|
-
end
|
|
40
|
-
end
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import UIKit
|
|
2
|
-
import React
|
|
3
|
-
import React_RCTAppDelegate
|
|
4
|
-
import ReactAppDependencyProvider
|
|
5
|
-
|
|
6
|
-
@main
|
|
7
|
-
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
8
|
-
var window: UIWindow?
|
|
9
|
-
|
|
10
|
-
var reactNativeDelegate: ReactNativeDelegate?
|
|
11
|
-
var reactNativeFactory: RCTReactNativeFactory?
|
|
12
|
-
|
|
13
|
-
func application(
|
|
14
|
-
_ application: UIApplication,
|
|
15
|
-
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
16
|
-
) -> Bool {
|
|
17
|
-
let delegate = ReactNativeDelegate()
|
|
18
|
-
let factory = RCTReactNativeFactory(delegate: delegate)
|
|
19
|
-
delegate.dependencyProvider = RCTAppDependencyProvider()
|
|
20
|
-
|
|
21
|
-
reactNativeDelegate = delegate
|
|
22
|
-
reactNativeFactory = factory
|
|
23
|
-
|
|
24
|
-
window = UIWindow(frame: UIScreen.main.bounds)
|
|
25
|
-
|
|
26
|
-
factory.startReactNative(
|
|
27
|
-
withModuleName: "pointr_rn_demo",
|
|
28
|
-
in: window,
|
|
29
|
-
launchOptions: launchOptions
|
|
30
|
-
)
|
|
31
|
-
|
|
32
|
-
return true
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
|
|
37
|
-
override func sourceURL(for bridge: RCTBridge) -> URL? {
|
|
38
|
-
self.bundleURL()
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
override func bundleURL() -> URL? {
|
|
42
|
-
#if DEBUG
|
|
43
|
-
RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
|
|
44
|
-
#else
|
|
45
|
-
Bundle.main.url(forResource: "main", withExtension: "jsbundle")
|
|
46
|
-
#endif
|
|
47
|
-
}
|
|
48
|
-
}
|
package/example/pointr_rn_demo/ios/pointr_rn_demo/Images.xcassets/AppIcon.appiconset/Contents.json
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"images" : [
|
|
3
|
-
{
|
|
4
|
-
"idiom" : "iphone",
|
|
5
|
-
"scale" : "2x",
|
|
6
|
-
"size" : "20x20"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"idiom" : "iphone",
|
|
10
|
-
"scale" : "3x",
|
|
11
|
-
"size" : "20x20"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"idiom" : "iphone",
|
|
15
|
-
"scale" : "2x",
|
|
16
|
-
"size" : "29x29"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"idiom" : "iphone",
|
|
20
|
-
"scale" : "3x",
|
|
21
|
-
"size" : "29x29"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"idiom" : "iphone",
|
|
25
|
-
"scale" : "2x",
|
|
26
|
-
"size" : "40x40"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"idiom" : "iphone",
|
|
30
|
-
"scale" : "3x",
|
|
31
|
-
"size" : "40x40"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"idiom" : "iphone",
|
|
35
|
-
"scale" : "2x",
|
|
36
|
-
"size" : "60x60"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"idiom" : "iphone",
|
|
40
|
-
"scale" : "3x",
|
|
41
|
-
"size" : "60x60"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"idiom" : "ios-marketing",
|
|
45
|
-
"scale" : "1x",
|
|
46
|
-
"size" : "1024x1024"
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"info" : {
|
|
50
|
-
"author" : "xcode",
|
|
51
|
-
"version" : 1
|
|
52
|
-
}
|
|
53
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
6
|
-
<true/>
|
|
7
|
-
<key>CFBundleDevelopmentRegion</key>
|
|
8
|
-
<string>en</string>
|
|
9
|
-
<key>CFBundleDisplayName</key>
|
|
10
|
-
<string>pointr_rn_demo</string>
|
|
11
|
-
<key>CFBundleExecutable</key>
|
|
12
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
13
|
-
<key>CFBundleIdentifier</key>
|
|
14
|
-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
15
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
16
|
-
<string>6.0</string>
|
|
17
|
-
<key>CFBundleName</key>
|
|
18
|
-
<string>$(PRODUCT_NAME)</string>
|
|
19
|
-
<key>CFBundlePackageType</key>
|
|
20
|
-
<string>APPL</string>
|
|
21
|
-
<key>CFBundleShortVersionString</key>
|
|
22
|
-
<string>$(MARKETING_VERSION)</string>
|
|
23
|
-
<key>CFBundleSignature</key>
|
|
24
|
-
<string>????</string>
|
|
25
|
-
<key>CFBundleVersion</key>
|
|
26
|
-
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
27
|
-
<key>LSRequiresIPhoneOS</key>
|
|
28
|
-
<true/>
|
|
29
|
-
<key>NSAppTransportSecurity</key>
|
|
30
|
-
<dict>
|
|
31
|
-
<key>NSAllowsArbitraryLoads</key>
|
|
32
|
-
<false/>
|
|
33
|
-
<key>NSAllowsLocalNetworking</key>
|
|
34
|
-
<true/>
|
|
35
|
-
</dict>
|
|
36
|
-
<key>NSBluetoothAlwaysUsageDescription</key>
|
|
37
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
38
|
-
<key>NSBluetoothPeripheralUsageDescription</key>
|
|
39
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
40
|
-
<key>NSLocationAlwaysUsageDescription</key>
|
|
41
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
42
|
-
<key>NSLocationWhenInUseUsageDescription</key>
|
|
43
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
44
|
-
<key>NSMotionUsageDescription</key>
|
|
45
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
46
|
-
<key>RCTNewArchEnabled</key>
|
|
47
|
-
<true/>
|
|
48
|
-
<key>UILaunchStoryboardName</key>
|
|
49
|
-
<string>LaunchScreen</string>
|
|
50
|
-
<key>UIRequiredDeviceCapabilities</key>
|
|
51
|
-
<array>
|
|
52
|
-
<string>arm64</string>
|
|
53
|
-
</array>
|
|
54
|
-
<key>UISupportedInterfaceOrientations</key>
|
|
55
|
-
<array>
|
|
56
|
-
<string>UIInterfaceOrientationPortrait</string>
|
|
57
|
-
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
58
|
-
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
59
|
-
</array>
|
|
60
|
-
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
61
|
-
<false/>
|
|
62
|
-
</dict>
|
|
63
|
-
</plist>
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
|
3
|
-
<device id="retina4_7" orientation="portrait" appearance="light"/>
|
|
4
|
-
<dependencies>
|
|
5
|
-
<deployment identifier="iOS"/>
|
|
6
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
|
|
7
|
-
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
|
8
|
-
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
9
|
-
</dependencies>
|
|
10
|
-
<scenes>
|
|
11
|
-
<!--View Controller-->
|
|
12
|
-
<scene sceneID="EHf-IW-A2E">
|
|
13
|
-
<objects>
|
|
14
|
-
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
|
15
|
-
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
|
16
|
-
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
|
|
17
|
-
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
18
|
-
<subviews>
|
|
19
|
-
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="pointr_rn_demo" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
|
|
20
|
-
<rect key="frame" x="0.0" y="202" width="375" height="43"/>
|
|
21
|
-
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
|
|
22
|
-
<nil key="highlightedColor"/>
|
|
23
|
-
</label>
|
|
24
|
-
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu">
|
|
25
|
-
<rect key="frame" x="0.0" y="626" width="375" height="21"/>
|
|
26
|
-
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
27
|
-
<nil key="highlightedColor"/>
|
|
28
|
-
</label>
|
|
29
|
-
</subviews>
|
|
30
|
-
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
|
|
31
|
-
<constraints>
|
|
32
|
-
<constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/>
|
|
33
|
-
<constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/>
|
|
34
|
-
<constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/>
|
|
35
|
-
<constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/>
|
|
36
|
-
<constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/>
|
|
37
|
-
<constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/>
|
|
38
|
-
</constraints>
|
|
39
|
-
<viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
|
|
40
|
-
</view>
|
|
41
|
-
</viewController>
|
|
42
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
43
|
-
</objects>
|
|
44
|
-
<point key="canvasLocation" x="52.173913043478265" y="375"/>
|
|
45
|
-
</scene>
|
|
46
|
-
</scenes>
|
|
47
|
-
</document>
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>NSPrivacyAccessedAPITypes</key>
|
|
6
|
-
<array>
|
|
7
|
-
<dict>
|
|
8
|
-
<key>NSPrivacyAccessedAPIType</key>
|
|
9
|
-
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
|
|
10
|
-
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
11
|
-
<array>
|
|
12
|
-
<string>C617.1</string>
|
|
13
|
-
</array>
|
|
14
|
-
</dict>
|
|
15
|
-
<dict>
|
|
16
|
-
<key>NSPrivacyAccessedAPIType</key>
|
|
17
|
-
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
|
|
18
|
-
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
19
|
-
<array>
|
|
20
|
-
<string>CA92.1</string>
|
|
21
|
-
</array>
|
|
22
|
-
</dict>
|
|
23
|
-
<dict>
|
|
24
|
-
<key>NSPrivacyAccessedAPIType</key>
|
|
25
|
-
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
|
|
26
|
-
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
27
|
-
<array>
|
|
28
|
-
<string>35F9.1</string>
|
|
29
|
-
</array>
|
|
30
|
-
</dict>
|
|
31
|
-
</array>
|
|
32
|
-
<key>NSPrivacyCollectedDataTypes</key>
|
|
33
|
-
<array/>
|
|
34
|
-
<key>NSPrivacyTracking</key>
|
|
35
|
-
<false/>
|
|
36
|
-
</dict>
|
|
37
|
-
</plist>
|