UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

68 lines (56 loc) 1.58 kB
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow */ 'use strict'; const React = require('react'); const {DeviceEventEmitter, Text, View} = require('react-native'); import {type EventSubscription} from 'react-native/Libraries/vendor/emitter/EventEmitter'; class OrientationChangeExample extends React.Component<{...}, $FlowFixMeState> { _orientationSubscription: EventSubscription; state = { currentOrientation: '', orientationDegrees: 0, isLandscape: false, }; componentDidMount() { this._orientationSubscription = DeviceEventEmitter.addListener( 'namedOrientationDidChange', this._onOrientationChange, ); } componentWillUnmount() { this._orientationSubscription.remove(); } _onOrientationChange = (orientation: Object) => { this.setState({ currentOrientation: orientation.name, orientationDegrees: orientation.rotationDegrees, isLandscape: orientation.isLandscape, }); }; render() { return ( <View> <Text>{JSON.stringify(this.state)}</Text> </View> ); } } exports.title = 'OrientationChangeExample'; exports.category = 'Basic'; exports.description = 'listening to orientation changes'; exports.examples = [ { title: 'OrientationChangeExample', description: 'listening to device orientation changes', render(): React.Node { return <OrientationChangeExample />; }, }, ];