bootstrap_flutter 1.0.0 copy "bootstrap_flutter: ^1.0.0" to clipboard
bootstrap_flutter: ^1.0.0 copied to clipboard

Aplicação de responsividade do bootstrap para facilitar a criação de multiplos tamanhos de telas em seus projetos

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: ScaffoldBootstrap(children: [
        Component(
            style: 'lg-4 md-4 sm-4 xs-4 xs:h/4',
            child: Container(
              width: double.maxFinite,
              height: double.maxFinite,
              color: Colors.green,
             
            )),
        Component(
            style: 'lg-4 md-4 sm-4 xs-4',
            child: Container(
              width: double.maxFinite,
              height: double.maxFinite,
              color: Colors.red,
            )),
        Component(
            style: 'lg-4 md-4 sm-4 xs-4',
            child: Container(
              width: double.maxFinite,
              height: double.maxFinite,
              color: Colors.blue,
            ))
      ]),
    );
  }
}
30
likes
120
pub points
37%
popularity

Publisher

verified publishergabul.dev

Aplicação de responsividade do bootstrap para facilitar a criação de multiplos tamanhos de telas em seus projetos

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, golden_toolkit

More

Packages that depend on bootstrap_flutter