graphql_flutter 1.0.0-alpha.4 graphql_flutter: ^1.0.0-alpha.4 copied to clipboard
A GraphQL client for Flutter, bringing all the features from a modern GraphQL client to one easy to use package.
import 'package:flutter/material.dart';
import 'package:graphql_flutter/graphql_flutter.dart';
import './mutations/addStar.dart' as mutations;
import './queries/readRepositories.dart' as queries;
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
HttpLink link = HttpLink(
uri: 'https://api.github.com/graphql',
headers: <String, String>{
'Authorization': 'Bearer <YOUR_PERSONAL_ACCESS_TOKEN>',
},
);
ValueNotifier<GraphQLClient> client = ValueNotifier(
GraphQLClient(
cache: InMemoryCache(),
link: link,
),
);
return GraphQLProvider(
client: client,
child: CacheProvider(
child: MaterialApp(
title: 'GraphQL Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'GraphQL Flutter Home Page'),
),
),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({
Key key,
this.title,
}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Query(
options: QueryOptions(
document: queries.readRepositories,
pollInterval: 4,
),
builder: (QueryResult result) {
if (result.errors != null) {
return Text(result.errors.toString());
}
if (result.loading) {
return Text('Loading');
}
// it can be either Map or List
List repositories = result.data['viewer']['repositories']['nodes'];
return ListView.builder(
itemCount: repositories.length,
itemBuilder: (context, index) {
final repository = repositories[index];
return Mutation(
options: MutationOptions(
document: mutations.addStar,
),
builder: (
RunMutation addStar,
QueryResult result,
) {
if (result.data != null && result.data.isNotEmpty) {
repository['viewerHasStarred'] =
result.data['addStar']['starrable']['viewerHasStarred'];
}
return ListTile(
leading: repository['viewerHasStarred']
? const Icon(Icons.star, color: Colors.amber)
: const Icon(Icons.star_border),
title: Text(repository['name']),
// NOTE: optimistic ui updates are not implemented yet, therefore changes may take upto 1 second to show.
onTap: () {
addStar({
'starrableId': repository['id'],
});
},
);
},
// onCompleted: (Map<String, dynamic> data) {
// showDialog(
// context: context,
// builder: (BuildContext context) {
// return AlertDialog(
// title: Text('Thanks for your star!'),
// actions: <Widget>[
// SimpleDialogOption(
// child: Text('Dismiss'),
// onPressed: () {
// Navigator.of(context).pop();
// },
// )
// ],
// );
// },
// );
// },
);
},
);
},
),
);
}
}