fittor 1.0.6 copy "fittor: ^1.0.6" to clipboard
fittor: ^1.0.6 copied to clipboard

A comprehensive Flutter package for creating responsive UIs that adapt to different screen sizes and orientations.

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget responsive(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: true,
      title: 'Responsive Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: ConnectivityWrapper(
        ignoreOfflineState: false,
        onConnectivityChanged: (status) {
          debugPrint('Connectivity status: $status');
        },
        child: const HomeScreen(),
      ),
    );
  }
}
9
likes
0
points
61
downloads

Publisher

verified publishermushthak.com

Weekly Downloads

A comprehensive Flutter package for creating responsive UIs that adapt to different screen sizes and orientations.

Repository (GitHub)
View/report issues

Topics

#responsive #connectivity #ui-design #layout #adaptive

Funding

Consider supporting this project:

github.com

License

unknown (license)

Dependencies

flutter

More

Packages that depend on fittor