bootstrap_typography2 2.1.1 copy "bootstrap_typography2: ^2.1.1" to clipboard
bootstrap_typography2: ^2.1.1 copied to clipboard

Bootstrap typography, size text based on screen size, uses bootstrap values in pixels

example/lib/main.dart

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

void main() {
  runApp(
    MaterialApp(
      home: Scaffold(
        body: SingleChildScrollView(
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.stretch,
            children: [
              H1(
                textData: BSTextParams("H1"),
              ),
              H2(
                textData: BSTextParams("H2"),
              ),
              H3(
                textData: BSTextParams("H3"),
              ),
              H4(
                textData: BSTextParams("H4"),
              ),
              H5(
                textData: BSTextParams("H5"),
              ),
              H6(
                textData: BSTextParams("H6"),
              ),
              P(
                textData: BSTextParams("P"),
              ),
              H2(
                textData: BSTextParams(
                  "Custom",
                  textSizeSmall: 16,
                  textSizeLarge: 82,
                ),
              ),
              H3(
                textData: BSTextParams(
                  "Custom Breakpoints, and Sizes",
                  textSizeSmall: 16,
                  textSizeLarge: 32,
                  customBreakpoints: (
                    context,
                    textType, {
                    required large,
                    required small,
                  }) {
                    if (MediaQuery.of(context).size.width > 500) {
                      return large;
                    }
                    return small;
                  },
                ),
              ),
              //
              H1(
                selectData: BSSelectParams("H1"),
              ),
              H2(
                selectData: BSSelectParams("H2"),
              ),
              H3(
                selectData: BSSelectParams("H3"),
              ),
              H4(
                selectData: BSSelectParams("H4"),
              ),
              H5(
                selectData: BSSelectParams("H5"),
              ),
              H6(
                selectData: BSSelectParams("H6"),
              ),
              P(
                selectData: BSSelectParams("P"),
              ),
              H2(
                selectData: BSSelectParams(
                  "Custom",
                  textSizeSmall: 16,
                  textSizeLarge: 82,
                ),
              ),
              H3(
                selectData: BSSelectParams(
                  "Custom Breakpoints, and Sizes",
                  textSizeSmall: 16,
                  textSizeLarge: 32,
                  customBreakpoints: (
                    context,
                    textType, {
                    required large,
                    required small,
                  }) {
                    if (MediaQuery.of(context).size.width > 500) {
                      return large;
                    }
                    return small;
                  },
                ),
              ),
            ],
          ),
        ),
      ),
    ),
  );
}
5
likes
120
pub points
0%
popularity

Publisher

unverified uploader

Bootstrap typography, size text based on screen size, uses bootstrap values in pixels

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bootstrap_like_breakpoints, flutter

More

Packages that depend on bootstrap_typography2