Skip to content

Instantly share code, notes, and snippets.

View abhimalamkar's full-sized avatar
🏠
Working from home

Abhijeet Malamkar abhimalamkar

🏠
Working from home
View GitHub Profile
@patrick-elmquist
patrick-elmquist / item_animation_from_right.xml
Last active June 23, 2018 05:06
Enter animation demo: Slide from the right demo
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@integer/anim_duration_long">
<translate
android:interpolator="@android:anim/decelerate_interpolator"
android:fromXDelta="100%p"
android:toXDelta="0"
/>
@scf4
scf4 / index.js
Created July 5, 2017 19:30
[Draft.js plugins] How to force block style on first line for a heading/title like Medium
// Import and add to your Editor's plugins
import { RichUtils } from 'draft-js';
const HEADING = 'header-one';
export default () => ({
onChange: (editorState) => {
const currentContent = editorState.getCurrentContent();
const firstBlockKey = currentContent.getBlockMap().first().getKey();