Skip to content

Instantly share code, notes, and snippets.

View kumar-aakash86's full-sized avatar

Aakash Kumar kumar-aakash86

View GitHub Profile
@kumar-aakash86
kumar-aakash86 / HtmlCustomizer.java
Last active December 15, 2018 15:05
Customizing html string with your custom html tags in Android
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;
@kumar-aakash86
kumar-aakash86 / App.js
Last active June 2, 2020 07:34
Setting up React Native with Redux
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"/>