flutter_scalable

Last updated:

0 purchases

flutter_scalable Image
flutter_scalable Images
Add to Cart

Description:

flutter scalable

Features #
This package allows you to use scalable sizes in your project #
Getting started #
import 'package:flutter_scalable/flutter_scalable.dart'; #
Usage #
Initialize FlutterScalable in your main file and enjoy #
class MyApp extends StatelessWidget {
const MyApp({super.key});

// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return FlutterScalable(
builder: (context) {
return MaterialApp(
title: 'Flutter Scalable',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
);
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.