super_text 0.1.1 copy "super_text: ^0.1.1" to clipboard
super_text: ^0.1.1 copied to clipboard

A powerful plugin to style text effectively.

example/lib/main.dart

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

import 'home.dart';
import 'stylesheet/super_text_style_sheet.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return SuperTextStyleProvider(
      data: {
        ...styleSheet,
        "style": MaterialTextThemeModifier(context),
      },
      child: MaterialApp(
        title: 'Super Text Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: Home(),
      ),
    );
  }
}
2
likes
120
pub points
18%
popularity

Publisher

unverified uploader

A powerful plugin to style text effectively.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

equatable, flutter

More

Packages that depend on super_text