Skip to content

Instantly share code, notes, and snippets.

View Babadzhanov's full-sized avatar
🌑
☀️

Simeon Babadzhanov

🌑
☀️
View GitHub Profile
@Babadzhanov
Babadzhanov / EventComponent.js
Created October 12, 2021 18:17 — forked from hartzis/EventComponent.js
Touch Event Handling React Component
import React from 'react';
export default class EventComponent extends React.Component {
constructor(props) {
super(props);
this._onTouchStart = this._onTouchStart.bind(this);
this._onTouchMove = this._onTouchMove.bind(this);
this._onTouchEnd = this._onTouchEnd.bind(this);
@Babadzhanov
Babadzhanov / dropdown.md
Created March 1, 2021 12:56 — forked from citrusui/dropdown.md
"Dropdowns" in Markdown
How do I dropdown?
This is how you dropdown.

<details>
<summary>How do I dropdown?</summary>
<br>
This is how you dropdown.
@Babadzhanov
Babadzhanov / WeatherContract.java
Created May 24, 2018 11:26 — forked from udacityandroid/WeatherContract.java
Contract class for a weather application called Sunshine
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software