├── .gitignore ├── README.md ├── RNTouchbar ├── RNTouchbar.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── potomushto.xcuserdatad │ │ └── xcschemes │ │ ├── RNTouchbar.xcscheme │ │ └── xcschememanagement.plist └── RNTouchbar │ ├── RNTouchbarManager.h │ ├── RNTouchbarManager.m │ ├── RNTouchbarRootView.h │ └── RNTouchbarRootView.m ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ```js 3 | import React from 'react'; 4 | import { View } from 'react-native-macos'; 5 | import TouchBar from 'react-native-touchbar'; 6 | 7 | export default myApp = () => ( 8 | 9 | 10 |