0
によって生成されたプロジェクトから.babelrc
に{"plugins": [["import", { "libraryName": "antd-mobile" }]]}
を追加する必要があります。ant-design-mobileをネイティブで反応させるにはant-design-mobileはcreate-react-native-appで動作しますか?
私はで新しいプロジェクトを開始しました。create-react-native-appです。これに.babelrcを変更し :
{
"presets": ["babel-preset-expo"],
"env": {
"development": {
"plugins": [
"transform-react-jsx-source",
]
}
},
"plugins": [
["import", { "libraryName": "antd-mobile" }]
]
}
クラス:
import { Button } from 'antd-mobile';
export class Screen extends React.Component<any,{}>{
render(){
return(
<View>
<Button>Something</Button>
</View>
)
}
}
しかし、私はまだ起動時にこのエラーを取得しています:
Note: must use https://github.com/ant-design/babel-plugin-import .
For more information, please see https://github.com/ant-design/ant-design-mobile/issues/602
誰もが解決策に私を指すことができます?
ありがとうございます。問題は、私が避けたいと思っている 'create-react-native-app'によって生成されたプロジェクトに' babel-plugin-import'を使うために 'eject'を実行しなければならないということです。 – RedGiant