flira 0.5.5 copy "flira: ^0.5.5" to clipboard
flira: ^0.5.5 copied to clipboard

A tool to report Jira issues from any flutter-app. It can be activated by shaking the phone or taking a screenshot.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return FliraWrapper(
      triggeringMethod: TriggeringMethod.shaking,
      context: context,
      app: MaterialApp(
        title: 'Welcome to Flutter',
        home: Scaffold(
          appBar: AppBar(
            title: const Text('Welcome to Flira example'),
          ),
          body: const Padding(
            padding: EdgeInsets.symmetric(horizontal: 16),
            child: Center(
              child: Column(
                crossAxisAlignment: CrossAxisAlignment.center,
                mainAxisAlignment: MainAxisAlignment.center,
                children: [
                  Text('Tap the hidden button to expand it'),
                  SizedBox(height: 20),
                  Text('To hide it back, drag it to the edge of the screen'),
                  SizedBox(height: 20),
                  Text('To open the report dialog, tap the expanded button'),
                  SizedBox(height: 20),
                  Text('To Access the your jira account, fill the form and tap ok. Then tap the expanded button again', textAlign: TextAlign.center ,),
                ],
              ),
            ),
          ),
        ),
      ),
    );
  }
}
5
likes
110
pub points
19%
popularity

Publisher

unverified uploader

A tool to report Jira issues from any flutter-app. It can be activated by shaking the phone or taking a screenshot.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

atlassian_apis, equatable, file_picker, flutter, flutter_bloc, flutter_secure_storage, permission_handler, shake

More

Packages that depend on flira