This file contains hidden or 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 'package:flutter/material.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| import 'dart:math' as math; | |
| void main() => runApp(ScratchApp()); | |
| class ScratchApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
This file contains hidden or 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
| query IntrospectionQuery { | |
| __schema { | |
| queryType { name } | |
| mutationType { name } | |
| subscriptionType { name } | |
| types { | |
| ...FullType | |
| } | |
| directives { | |
| name |
This file contains hidden or 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
| // HTTP Toolkit full export v2 (requests + responses + bodies). | |
| // Paste into the DevTools console inside the HTTP Toolkit desktop app. | |
| (async function () { | |
| var findEventsStore = function () { | |
| var elements = document.querySelectorAll('*'); | |
| for (var i = 0; i < elements.length; i++) { | |
| var el = elements[i]; | |
| var keys = Object.keys(el); | |
| for (var j = 0; j < keys.length; j++) { | |
| var key = keys[j]; |