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

Flutteradgents is a tool for testers and QA teams that, directly within the project, lets them log into Jira, capture and annotate screenshots, and quickly create and assign bug tickets with all the n [...]

example/lib/main.dart

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

void main() {
  runApp(const ExampleApp());
}

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return FlutterAdgentsHosts.forProject(
      projectId: 'fad_demo_project_id',
      flavor: 'develop',
      child: MaterialApp(
        title: 'flutteradgents example',
        debugShowCheckedModeBanner: false,
        builder: FlutterAdgents.materialAppBuilder,
        home: const HomePage(),
      ),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('flutteradgents example')),
      body: Center(
        child: ElevatedButton(
          onPressed: () => FlutterAdgents.showFeedback(context),
          child: const Text('Open feedback'),
        ),
      ),
    );
  }
}
0
likes
0
points
42
downloads

Documentation

Documentation

Publisher

unverified uploader

Weekly Downloads

Flutteradgents is a tool for testers and QA teams that, directly within the project, lets them log into Jira, capture and annotate screenshots, and quickly create and assign bug tickets with all the necessary technical details included.

Repository (GitHub)
View/report issues

Topics

#flutter #jira #qa #feedback #testing

License

unknown (license)

Dependencies

app_links, device_info_plus, dio, flutter, flutter_localizations, flutter_secure_storage, flutter_web_auth_2, flutteradgents_feedback, http_parser, package_info_plus, url_launcher

More

Packages that depend on flutteradgents