flutter_math_fork 0.7.2 copy "flutter_math_fork: ^0.7.2" to clipboard
flutter_math_fork: ^0.7.2 copied to clipboard

Fast and high-quality TeX math equation rendering with pure Dart & Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'demo.dart';
import 'equations.dart';
import 'feature.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Flutter Math Demo v0.2.0',
        theme: ThemeData(
          primarySwatch: Colors.blue,
          visualDensity: VisualDensity.adaptivePlatformDensity,
        ),
        home: DefaultTabController(
          length: 3,
          child: Scaffold(
            appBar: AppBar(
              title: Text(
                'Flutter Math Demo v0.2.0',
              ),
              bottom: TabBar(tabs: [
                Text('Interactive Demo'),
                Text('Equation Samples'),
                Text('Supported Features'),
              ]),
            ),
            body: TabBarView(children: [
              DemoPage(),
              EquationsPage(),
              FeaturePage(),
            ]),
          ),
        ),
      );
}
122
likes
120
pub points
97%
popularity

Publisher

verified publishersimpleclub.com

Fast and high-quality TeX math equation rendering with pure Dart & Flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

collection, flutter, flutter_svg, meta, provider, tuple

More

Packages that depend on flutter_math_fork