Initial commit.

This commit is contained in:
Krzysztof Magiera
2018-08-03 13:34:09 +02:00
commit 31281d6b68
92 changed files with 16706 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.swmansion.rnscreens.example">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>

View File

@@ -0,0 +1,25 @@
package com.swmansion.rnscreens.example;
import android.arch.lifecycle.Lifecycle;
import android.arch.lifecycle.LifecycleObserver;
import android.arch.lifecycle.OnLifecycleEvent;
import android.content.Context;
import android.util.Log;
import com.facebook.react.views.view.ReactViewGroup;
public class LifecycleAwareView extends ReactViewGroup implements LifecycleObserver {
public LifecycleAwareView(Context context) {
super(context);
}
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
public void onResume() {
Log.e("CAT", "VIEW RESUME");
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
public void onPause() {
Log.e("CAT", "VIEW PAUSE");
}
}

View File

@@ -0,0 +1,15 @@
package com.swmansion.rnscreens.example;
import com.facebook.react.ReactFragmentActivity;
public class MainActivity extends ReactFragmentActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "ScreensExample";
}
}

View File

@@ -0,0 +1,47 @@
package com.swmansion.rnscreens.example;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.swmansion.rnscreens.RNScreenPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import java.util.Arrays;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNScreenPackage()
);
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
}
}

View File

@@ -0,0 +1,35 @@
package com.swmansion.rnscreens.example;
import android.util.Log;
import com.facebook.react.module.annotations.ReactModule;
import com.facebook.react.uimanager.ThemedReactContext;
import com.facebook.react.uimanager.ViewGroupManager;
import com.swmansion.rnscreens.LifecycleHelper;
@ReactModule(name = SampleLifecycleAwareViewManager.REACT_CLASS)
public class SampleLifecycleAwareViewManager extends ViewGroupManager<LifecycleAwareView> {
protected static final String REACT_CLASS = "RNSLifecycleAwareView";
private LifecycleHelper mLifecycleHelper = new LifecycleHelper();
@Override
public String getName() {
return REACT_CLASS;
}
@Override
protected LifecycleAwareView createViewInstance(ThemedReactContext reactContext) {
Log.e("CAT", "CREATE!!!");
LifecycleAwareView view = new LifecycleAwareView(reactContext);
mLifecycleHelper.register(view);
return view;
}
@Override
public void onDropViewInstance(LifecycleAwareView view) {
mLifecycleHelper.unregister(view);
super.onDropViewInstance(view);
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,3 @@
<resources>
<string name="app_name">ScreensExample</string>
</resources>

View File

@@ -0,0 +1,8 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
</style>
</resources>