graphql_switch 0.0.1-alpha.1 copy "graphql_switch: ^0.0.1-alpha.1" to clipboard
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');
  }
}