###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
import { type ComponentType, createElement, forwardRef } from 'react' | |
import type { TextProps } from 'react-native' | |
// uncomment for NativeWind support | |
//import { cssInterop } from 'nativewind' | |
const LeanText = forwardRef((props, ref) => { | |
return createElement('RCTText', { ...props, ref }) | |
}) as ComponentType<TextProps> |
... | |
<activity | |
android:name=".FullscreenVideoActivity" | |
android:configChanges="orientation|keyboardHidden|screenSize" | |
android:label="@string/app_name" | |
android:theme="@style/FullscreenTheme" /> | |
... |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
import android.os.Handler; | |
import android.os.SystemClock; | |
import android.view.animation.BounceInterpolator; | |
import android.view.animation.Interpolator; | |
import com.google.android.gms.maps.GoogleMap; | |
import com.google.android.gms.maps.model.Marker; | |
/** | |
* Performs a bounce animation on a {@link Marker} when it is clicked. |
// Created by Ullrich Schäfer on 16/08/14. | |
// Updated to Swift 1.1 and CocoaLumberjack beta4 by Stan Serebryakov on 24/10/14 | |
import Foundation | |
extension DDLog { | |
private struct State { | |
static var logLevel: DDLogLevel = .Error | |
static var logAsync: Bool = true |
using System; | |
using Xamarin.Forms; | |
using System.Collections; | |
namespace YourNamespace.Views.Controls { | |
public class BindablePicker : Picker | |
{ | |
public BindablePicker() | |
{ | |
this.SelectedIndexChanged += OnSelectedIndexChanged; |
Moved to repository: https://github.com/Mailcloud/swift-serializer
/* Copyright 2013 Google Inc. | |
Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0.html */ | |
package com.example.latlnginterpolation; | |
import android.animation.ObjectAnimator; | |
import android.animation.TypeEvaluator; | |
import android.animation.ValueAnimator; | |
import android.annotation.TargetApi; | |
import android.os.Build; |
// USAGE ------ | |
// ============ | |
var shell = require('./shellHelper'); | |
// execute a single shell command | |
shell.exec('npm test --coverage', function(err){ | |
console.log('executed test'); | |
}}); |