美文网首页
Taro踩坑记之React-Native样式篇

Taro踩坑记之React-Native样式篇

作者: LaxusJ | 来源:发表于2019-07-28 14:49 被阅读0次

样式管理

样式是实现多端编译的核心挑战,因为 RN 端的样式只是实现了 CSS 的一个子集,具体可参考 React-Native 样式指南

首先因为我是RN开发者,其次RN样式兼容度是最低的,所以我从RN环境出发然后再往各端转,我们首先要搞清楚RN在Taro上如何编写样式。

class 选择器和style共用

普通编写属性使用class 选择器

/* CustomComp.js */
import './index.scss'
export default class CustomComp extends Component {
  render () {
    return <Text className="red-text">样式</Text>
  }
}
/* MyPage.scss */
.red-text {
  color: red;
}

传递属性用style

export default class Index extends Component {
  render () {
    return (
      <View className='index'>
        <Text>Hello world!</Text>
        <PageView />
        <CustomView style={{backgroundColor:'#ff00ff'}} />
      </View>
    )
  }
}
export default class CustomView extends Component {

  render () {
    return (
      <View style={this.props.style} className='view_custom' onClick={() => alert('点击了')}>
        <Text>View居然支持RN点击 还是不错的</Text>
      </View>
    )
  }
}

转译后的样式

css -> stylesheet 的转换使用的是 css-to-react-native-transform

我们来看一下转译后的样式代码

// customview/index.js
import indexStyleSheet from "./index_styles";
var _styleSheet = indexStyleSheet;
let CustomView = class CustomView extends Component {

  render() {
    return <View style={[_styleSheet["view_custom"], this.props.style]} onClick={() => alert('点击了')}>
        <Text>View居然支持RN点击 还是不错的</Text>
      </View>;
  }
};
export { CustomView as default };
//index_styles.js
import { StyleSheet, Dimensions } from 'react-native'

// 一般app 只有竖屏模式,所以可以只获取一次 width
const deviceWidthDp = Dimensions.get('window').width
const uiWidthPx = 375

function scalePx2dp (uiElementPx) {
  return uiElementPx * deviceWidthDp / uiWidthPx
}

export default StyleSheet.create({
  "view_custom": {
    "paddingTop": scalePx2dp(38),
    "paddingRight": scalePx2dp(38),
    "paddingBottom": scalePx2dp(38),
    "paddingLeft": scalePx2dp(38),
    "backgroundColor": "#ff552e"
  }
})

可见Taro应用转译器将className转化为StyleSheet,自动生成了StyleSheet代码,并将它和style拼在一起。

有个疑问:因为rn的style里面不能写'150px'这种格式,默认是dp,那么传入的style不同端该如何控制值的单位呢

未完待续

参考
使用 Taro 编译小程序 + H5 + React Native 的最佳实践

相关文章

  • Taro踩坑记之React-Native样式篇

    样式管理 样式是实现多端编译的核心挑战,因为 RN 端的样式只是实现了 CSS 的一个子集,具体可参考 React...

  • Taro踩坑记之React-Native环境教程

    当前环境Taro CLI 1.3.10 environment info:System:OS: macOS 10....

  • Taro踩坑

    小程序转Taro 小程序转Taro的时候,会带上一个@withWeapp('page'),这是一个标识,用来表示是...

  • Taro踩坑

    网络相关 1、请求接口没有响应解决方法:配置httpRequest接口请求域名白名单 使用build时候出现的错误...

  • taro踩坑

    编译h5的时候遇到以下错 解决方案如下config/index.js添加esnextModule:['taro-ui']

  • taro踩坑

    使用taro下的组建ScrollView 时候样式出不来 全局样式引入import 'taro-ui/dist/s...

  • [React Native 日常错误记录] 报错 'error:

    [React-native 踩坑全集 问题记录] 报错内容: 解决方案

  • 微信小程序开发 — 开发踩坑记录

    说明 本文记录了小程序项目开发过程中踩过的坑,方便日后参考。 问题 taro-ui 问题 公司项目采用 taro-...

  • Taro 实战踩坑

    Taro 引用相对路径图片 直接将相对路径放在src属性中,不起作用,需要先import进来,最好把图片放到服务器...

  • taro 踩坑ing

    最近使用 taro 来开发扩平台的电商项目。首先兼容的是小程序,使用的工具是微信开发者工具,H5 和 RN 在以后...

网友评论

      本文标题:Taro踩坑记之React-Native样式篇

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