Change startupjs
and all @startupjs/*
dependencies in your package.json
to ^0.31
.
-
Tabs: Use
react-native-tab-view
instead of our broken implementation new api. It requires to installreact-native-gesture-handler
andreact-native-reanimated
. Also runnpx startupjs link
to linkstartupjs
library. -
Popover, Dropdown, Drawer, TextInput, Tooltip, Modal, AutoSuggest: See in PR
-
Slicer: remove component
-
wrap your
App
inRoot/index.js
inPortal.Provider
import App from 'startupjs/app' import { Portal } from '@startupjs/ui' import * as main from '../main' export default observer(() => { return pug` Portal.Provider App( apps={ main } ) ` })