flutter_responsive 0.0.3+3 copy "flutter_responsive: ^0.0.3+3" to clipboard
flutter_responsive: ^0.0.3+3 copied to clipboard

outdated

Responsive and wrap behaviour for layout and texts widgets in Flutter. This plugin was inspired on Bootstrap web project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_responsive_example/pages/home_page.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyApp createState() => _MyApp();
}
class _MyApp extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Responsive Example',
      theme: ThemeData(
        primaryColor: Color.fromARGB(255, 86, 61, 124),
        accentColor: Colors.black,

        // Define the default font family.
        fontFamily: 'Roboto',
      ),
      home: HomePage(),
    );
  }
}
27
likes
0
pub points
81%
popularity

Publisher

verified publishercarda.me

Responsive and wrap behaviour for layout and texts widgets in Flutter. This plugin was inspired on Bootstrap web project.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, html

More

Packages that depend on flutter_responsive