This file contains 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
import { useCallback } from 'react'; | |
import { StatusBar } from 'react-native'; | |
import { useFocusEffect } from '@react-navigation/native'; | |
/** | |
* Sets the status bar style on navigation through hooks | |
* @param { String } style The status bar style light-content dark-content | |
*/ | |
const useStatusBarStyle = style => { | |
useFocusEffect( |
This file contains 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
<?php | |
/* | |
* uses tmhOauth from https://github.com/themattharris/tmhOAuth/ | |
* and is mostly based on the oauth flow example from that library (thanks matt!) | |
* | |
* also need your own twitter api key / secret, and make sure it's got write access | |
* if you want to publish posts (extra step when making your api key on twitter) | |
* | |
* | |
*/ |