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
| package r.systems.demo1.utils; | |
| import android.util.Log; | |
| // jsoup library is required for this | |
| // implementation 'org.jsoup:jsoup:1.11.3' | |
| import org.jsoup.Jsoup; | |
| import org.jsoup.nodes.Document; | |
| import org.jsoup.nodes.Element; | |
| import org.jsoup.select.Elements; |
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
| import store from "./store/store"; | |
| import { Provider } from "react-redux"; | |
| export default class App extends React.Component { | |
| render() { | |
| return ( | |
| <View style={{ flex: 1 }}> | |
| <StatusBar | |
| backgroundColor={theme.PRIMARY_COLOR} | |
| barStyle="light-content"/> |
NewerOlder