1 Star 0 Fork 0

RobbiNespu/NativeBase

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ejectTheme.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
SupriyaKalghatgi 提交于 2018-03-01 12:43 . Fixed Docs URL in eject script
var fs = require("fs-extra");
var path = require("path");
var printMessage = require("print-message");
try {
fs.copySync(
path.join(__dirname, "src", "theme"),
path.join(process.cwd(), "native-base-theme")
);
printMessage(
[
"NativeBase theme has been copied at " +
path.join(process.cwd(), "native-base-theme"),
"Here's how to theme your app",
"",
"import getTheme from './native-base-theme/components';",
"export default class ThemeExample extends Component {",
"render() {",
" return (",
" <StyleProvider style={getTheme()}>",
" <Container>",
" <Content>",
" ...",
" </Content>",
" </Container>",
" </StyleProvider>",
" );",
"}",
"",
"Head over to the docs (http://docs.nativebase.io/Customize.html#Customize) for detailed information on customization"
],
{
color: "yellow",
borderColor: "green"
}
);
} catch (err) {
console.log("Error: " + err);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/RobbiNespu/NativeBase.git
git@gitee.com:RobbiNespu/NativeBase.git
RobbiNespu
NativeBase
NativeBase
master

搜索帮助