glo_insta_bug_reporter 0.1.0 copy "glo_insta_bug_reporter: ^0.1.0" to clipboard
glo_insta_bug_reporter: ^0.1.0 copied to clipboard

A package provides an easy way to instantly capture screenshot, edit it, describe and create card on glo board instantly in Flutter project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:glo_insta_bug_reporter/glo_insta_bug_reporter.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Glo Bug Reporter',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(
        title: 'Home',
      ),
    );
  }
}


class HomePage extends StatefulWidget {
  const HomePage({Key key, this.title}) : super(key: key);

  final String title;
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends GloReportableWidgetState<HomePage> {
  @override
  Widget buildRootWidget(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'Just shake\ndevice twice',
              textAlign: TextAlign.center,
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
1
likes
40
pub points
9%
popularity

Publisher

unverified uploader

A package provides an easy way to instantly capture screenshot, edit it, describe and create card on glo board instantly in Flutter project.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

build_runner, flutter, flutter_webview_plugin, http, http_parser, json_annotation, json_serializable, oauth2, sensors, shared_preferences

More

Packages that depend on glo_insta_bug_reporter