Skip to content

Instantly share code, notes, and snippets.

View raffaeler's full-sized avatar

Raf (Raffaele Rialdi) raffaeler

View GitHub Profile
@raffaeler
raffaeler / SvgWrappers.tsx
Last active April 3, 2020 16:03
Typescript wrappers for all the elements currently supported by react-native-svg
import * as React from 'react';
import { StyleSheet, GestureResponderEvent } from 'react-native';
import * as RNSVG from 'react-native-svg';
export type CommonPathProps = RNSVG.CommonPathProps;
type Overwrite<T, U> = Pick<T, Exclude<keyof T, keyof U>> & U;
class ClipPath extends React.Component<
{
id: string;
@raffaeler
raffaeler / gist:f8cf7c87ff9cd8e48c2b608b95b7cff4
Last active March 31, 2020 23:07
Draft for Assembly Loading in a mixed netstandard/netcore environment
// Read additional notes at the end of the file
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using System.Reflection.Metadata;
using System.Diagnostics;
#if NET462
#endif