美文网首页
vscode React Native StyleSheet 没

vscode React Native StyleSheet 没

作者: 澹台琉璃 | 来源:发表于2020-06-29 10:44 被阅读0次
    1. run npm i --save-dev @types/react-native in your project's root
    2. open <project>/node_modules/@types/react-native/index.d.ts
    3. add the following snippet
    interface Styles {
        [style: string]: Style
    }
    
    export function create(styles: Styles): any;
    

    right after the line with export namespace StyleSheet { (it's line 4469 in my case).

    You might also need to restart VSCode after applying the changes, but in my case they were applied immediately.

    参考链接: https://github.com/Microsoft/vscode-react-native/issues/379

    相关文章

      网友评论

          本文标题:vscode React Native StyleSheet 没

          本文链接:https://www.haomeiwen.com/subject/cuqofktx.html