fittor 1.1.3+1 copy "fittor: ^1.1.3+1" to clipboard
fittor: ^1.1.3+1 copied to clipboard

A Flutter package for responsive UIs and state management. Adapts to screen sizes and orientations.

example/lib/main.dart

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

import 'fit_bindings.dart';
import 'presentation/screen/fitter_view.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const FittorApp());
}

class FittorApp extends StatelessWidget with FittorAppMixin {
  const FittorApp({super.key});

  @override
  Widget responsive(BuildContext context) {
    return FitExplore(
      fitStates: AppBindings(),
      child: MaterialApp(
        debugShowCheckedModeBanner: false,
        home: ConnectivityWrapper(
          onConnectivityChanged: (ConnectivityStatus status) {
            debugPrint('Connectivity changed: $status');
          },
          // ignoreOfflineState: true,
          child: const FittorView(),
        ),
      ),
    );
  }
}
8
likes
160
points
449
downloads

Publisher

verified publishermushthak.com

Weekly Downloads

A Flutter package for responsive UIs and state management. Adapts to screen sizes and orientations.

Repository (GitHub)

Topics

#responsive #connectivity #key-value-storage #state-management #currency-formatting

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

flutter, web

More

Packages that depend on fittor