Skip to content

Instantly share code, notes, and snippets.

@jayde-bog
jayde-bog / layout.xml
Created February 4, 2020 01:40
Android SwitchCompat custom style
<androidx.appcompat.widget.SwitchCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:thumb="@drawable/more_switch_thumb"
app:track="@drawable/more_switch_track" />
@jayde-bog
jayde-bog / queue.js
Last active June 27, 2019 02:01
javascript: Queue
import EventEmitter from 'events';
class Node {
constructor(data) {
this._data = data;
this._next = null;
}
get data() {
return this._data;