fireball 0.0.1 copy "fireball: ^0.0.1" to clipboard
fireball: ^0.0.1 copied to clipboard

discontinued
outdated

http power.

example/lib/main.dart

import 'package:example/features/pet/pet.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Fireball Example App',
      home: Pet(),
    );
  }
}