Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
// Expo SDK40 | |
// expo-blur: ~8.2.2 | |
// expo-haptics: ~8.4.0 | |
// react-native-gesture-handler: ~1.8.0 | |
// react-native-reanimated: ^2.0.0-rc.0 | |
// react-native-safe-area-context: 3.1.9 | |
import React, { useState } from 'react'; | |
import { | |
Image, |
import React from 'react'; | |
import {Platform, Text, StyleSheet, TextInput, View, TouchableOpacity} from 'react-native'; | |
import {Overlay, Header} from 'react-native-elements'; | |
import DateTimePicker from '@react-native-community/datetimepicker'; | |
import moment from "moment"; | |
export interface IProps { | |
date?: string; | |
placeholder?: string; |
/** | |
* This class has a static a method `run` which needs to pass a callback method in order to get back the values | |
* for minutes and seconds | |
* If you need to show number values with zeros on pad start you have an example at the end of this code: | |
* Countdown | |
* run {method} | |
* @author Eledi Dyrkaj <[email protected]> | |
*/ | |
export class Countdown { | |
/** |
<?php | |
/** | |
* Copyright (c) 2017. Ezeclip | |
*/ | |
namespace App\Services; | |
class MapService { | |
// Define Constants | |
const GOOGLE_API_KEY = "XXX"; |
<h1>Angular 2 Recursive List</h1> | |
<ul> | |
<ng-template #recursiveList let-list> | |
<li *ngFor="let item of list"> | |
{{item.title}} | |
<ul *ngIf="item.children.length > 0"> | |
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container> | |
</ul> | |
</li> | |
</ng-template> |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |