This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn hello-world [] | |
[:div {:style {:position :absolute | |
:left 0 | |
:top 0 | |
:bottom 0 | |
:right 0 | |
:display :flex | |
:flex-direction :column}} | |
[:div {:style {:display :flex | |
:flex 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def react-navigation (js/require "react-navigation")) | |
; Core | |
(def createNavigationContainer (.-createNavigationContainer react-navigation)) | |
(def StateUtils (.-StateUtils react-navigation)) | |
(def PropTypes (.-PropTypes react-navigation)) | |
(def addNavigationHelpers (.-addNavigationHelpers react-navigation)) | |
(def NavigationActions (.-NavigationActions react-navigation)) |