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

outdated

Wishfly allows you to know what functions should your app have. All in your app.

example/lib/main.dart

import 'package:example/dashboard_screen.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:wishfly/wishfly.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Wishfly Demo',
      theme: ThemeData.light(),
      debugShowCheckedModeBanner: false,
      supportedLocales: const [Locale('en')],
      localizationsDelegates: const [
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
        WishflyLocalizationsDelegate(),
      ],
      home: const DashboardScreen(),
    );
  }
}
3
likes
0
points
24
downloads

Publisher

verified publisherwishfly.dev

Weekly Downloads

Wishfly allows you to know what functions should your app have. All in your app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, provider, shared_preferences, wishfly_shared

More

Packages that depend on wishfly