Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 682 Bytes

6.button.md

File metadata and controls

33 lines (28 loc) · 682 Bytes

Button、Touchable

React Natvie 當中拿來當作按鈕的元件

Button

  • 0.38 版才開始支援
  • 只支援最低限度的客製化
    • title
    • color
  • iOS、Android 樣式不一樣

使用範例:

<Button
  onPress={() => {}}
  title="HelloJS"
  color="#841584"
/>

Touchable

  • TouchableHighlight
    • 點擊後反黑
  • TouchableNativeFeedback
    • Android 會有 Material 效果
  • TouchableOpacity
    • 點擊後變透明
  • TouchableWithoutFeedback
    • 點擊後沒有反饋, UX 因素不推薦使用

延伸閱讀

Images Guide