flutter_sanity_plus 2.0.0+1 copy "flutter_sanity_plus: ^2.0.0+1" to clipboard
flutter_sanity_plus: ^2.0.0+1 copied to clipboard

Dart libary to query the Sanity.io API. Supports running queries and downloading files.

Dart Sanity.io #

This Dart package is a small abstraction on top of the Sanity.io API.

Installation #

dart pub add flutter_sanity_plus

Example #

// main.dart
import 'package:flutter_sanity_plus/flutter_sanity_plus.dart';

void main() async {
  final sanityClient = SanityClient(
    dataset: 'dataSet',
    projectId: 'projectId',
  );

  final response = await sanityClient.fetch('*[_type == "post"]');

  print(response);
}

Credits to: https://gist.github.com/ameistad/2c6eec79a62c7f4d08d051ef4ef14ba0

0
likes
140
pub points
54%
popularity

Publisher

verified publisheraryak.dev

Dart libary to query the Sanity.io API. Supports running queries and downloading files.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

http

More

Packages that depend on flutter_sanity_plus