vibebug_flutter 0.4.6 copy "vibebug_flutter: ^0.4.6" to clipboard
vibebug_flutter: ^0.4.6 copied to clipboard

Crash reporting and visual bug capture for Flutter apps — reports issues to Vibe Bug Tracker with screenshots, widget selectors, and an offline queue.

example/lib/main.dart

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

import 'app.dart';

void main() {
  // ensureInitialized + runApp must share the same zone as runGuarded.
  VibeBug.runGuarded(() async {
    WidgetsFlutterBinding.ensureInitialized();
    // Awaiting initialize() before runApp() (the same shape
    // `dart run vibebug_flutter:configure` generates) means VibeBugScope's
    // very first build already knows the gate's real state — no flash of
    // app content (or the report bubble) before sign-in resolves.
    await VibeBug.initialize(VibeBugOptions(
      onIssueSent: (issueId) => demoLastIssueId.value = issueId,
      onError: (error) => demoError.value = error.toString(),
    ));
    runApp(const SdkDemoApp());
  });
}
1
likes
0
points
426
downloads

Documentation

Documentation

Publisher

unverified uploader

Weekly Downloads

Crash reporting and visual bug capture for Flutter apps — reports issues to Vibe Bug Tracker with screenshots, widget selectors, and an offline queue.

Homepage
Repository (GitHub)
View/report issues

Topics

#flutter #crash-reporting #bug-tracking #debugging #visual-bug-reporting

License

unknown (license)

Dependencies

flutter, flutter_secure_storage, http, shared_preferences, uuid

More

Packages that depend on vibebug_flutter