• 授权协议:-
  • 开发厂商:-
  • 软件语言:Objective-C
  • 更新日期:2016-12-01
react-native-touchbar

react-native-touchbar 是用于 react-native-macos 的 touchBar。需要 macOS Sierra 10.12.1或更高版本上的 Xcode 8.1,在 Xcode - > Windows 菜单中启用触摸板模拟器:

react-native-touchbar 项目简介

react-native-touchbar 是用于 react-native-macos 的 touchBar。import React from 'react';
import { View } from 'react-native-macos';
import TouchBar from 'react-native-touchbar';

export default myApp = () => (
     <View style={styles.container}>
        <TouchBar>
          <Button title="Esc" onClick={() => alert('Hello, vim!')}/>
          <Button title="Courage" style={{ fontSize: 12 }} />
          <View style={{ backgroundColor: 'red', flex: 1}} />
        </TouchBar>
        <Text style={styles.welcome}>
          Welcome to React Native macOS!
        </Text>
        <Text style={styles.instructions}>
          To get started, edit index.macos.js
        </Text>
        <Text style={styles.instructions}>
          Press Cmd+R to reload,{'\n'}
          Or use Developer Menu
        </Text>
     </View>
)需要 macOS Sierra 10.12.1(12B2657)或更高版本上的 Xcode 8.1,在 Xcode - > Windows 菜单中启用触摸板模拟器:TODO:不同于原生的 TouchBarItems(像分段控件)Inner touchbar定制化每个 APP 有多个 Touchbar 实例

react-native-touchbar 评论内容