This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; | |
} |