using System; using System.Collections.Generic; using ReactNative.Bridge; using ReactNative.Modules.Core; using ReactNative.UIManager; namespace LinearGradient { public class LinearGradientPackage : IReactPackage { public IReadOnlyList CreateNativeModules(ReactContext reactContext) { return new List(0); } public IReadOnlyList CreateJavaScriptModulesConfig() { return new List(0); } public IReadOnlyList CreateViewManagers(ReactContext reactContext) { return new List { new LinearGradientManager() }; } } }