react-native-legal
Version:
Acknowledge OSS libraries used in your React Native app
11 lines (9 loc) • 352 B
text/typescript
import NativeReactNativeLegal from './NativeReactNativeLegal';
export const ReactNativeLegal = {
launchLicenseListScreen: (licenseHeaderText?: string) => {
/**
* On iOS, the licenses list is displayed as a custom table view controller
*/
NativeReactNativeLegal.launchLicenseListScreen(licenseHeaderText ?? 'OSS Licenses');
},
};