123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using ReactNative.Bridge;
- using ReactNative.Modules.Core;
- using ReactNative.UIManager;
- using System;
- using System.Collections.Generic;
-
- namespace RNViewShot
- {
-
-
-
-
-
-
- public class RNViewShotPackage : IReactPackage
- {
-
-
-
-
-
-
- public IReadOnlyList<INativeModule> CreateNativeModules(ReactContext reactContext)
- {
- return new List<INativeModule>
- {
- new RNViewShotModule(reactContext),
- };
- }
-
-
-
-
-
-
- public IReadOnlyList<Type> CreateJavaScriptModulesConfig()
- {
- return new List<Type>(0);
- }
-
-
-
-
-
-
-
- public IReadOnlyList<IViewManager> CreateViewManagers(
- ReactContext reactContext)
- {
- return new List<IViewManager>(0);
- }
- }
- }
|