mao-rn-android-kit
Version:
为 React Native 开发 提供的一些Android原生模块/组件 (react native, CoordinatorLayout, AppBarLayout, TabLayout, NestedScrollView, PopupWindow)
13 lines (12 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const react_native_1 = require("react-native");
const LayoutParams = react_native_1.NativeModules.MaoKitsLayoutParamsAndroid;
exports.default = {
get MATCH_PARENT() {
return LayoutParams.MATCH_PARENT;
},
get WRAP_CONTENT() {
return LayoutParams.WRAP_CONTENT;
}
};