Skip to content

Instantly share code, notes, and snippets.

import * as React from 'react';
import * as mobx from 'mobx';
import * as mobxReactLite from 'mobx-react-lite';
type LooseProps = {
observable: any;
property: any;
childType: React.FunctionComponent<any>;
childProps: any;
};
@jpotterm
jpotterm / main.dart
Last active March 23, 2022 22:35
Flutter SVG Path Converter
// Generates canvas drawing commands from an SVG path string
import 'package:path_parsing/path_parsing.dart';
void main(List<String> args) {
if (args.length < 3) {
print('Usage: width height path_string');
return;
}