graphql_switch 0.0.1-alpha.1
graphql_switch: ^0.0.1-alpha.1 copied to clipboard
If you like Relay, you're gonna love GraphQL Switch!
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Text('Hello world');
}
}