shake_http_client 14.1.0 copy "shake_http_client: ^14.1.0" to clipboard
shake_http_client: ^14.1.0 copied to clipboard

outdated

This package is an extension for Shake bug reporting tool. The extension provides http wrapper which makes network requests visible on the dashboard.

example/main.dart

import 'package:flutter/material.dart';
import 'package:shake_http_client/shake_http_client.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo'),
    );
  }
}

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
  void initState() {
    super.initState();

    _fetchPage();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Text('Shake network tracking is enabled.'),
      ),
    );
  }

  _fetchPage() async {
    ShakeHttpClient shakeHttpClient = ShakeHttpClient();
    await shakeHttpClient.get(Uri.parse('http://api.example.com/data'));
  }
}
5
likes
0
pub points
0%
popularity

Publisher

verified publishershakebugs.com

This package is an extension for Shake bug reporting tool. The extension provides http wrapper which makes network requests visible on the dashboard.

Homepage

License

unknown (LICENSE)

Dependencies

flutter, http, shake_flutter

More

Packages that depend on shake_http_client