fluttex 0.0.2 copy "fluttex: ^0.0.2" to clipboard
fluttex: ^0.0.2 copied to clipboard

Customizable Flutter plugin that renders TeX equations blazingly fast.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:fluttex/math_view_static.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final _textController = TextEditingController();
  MathViewController _mathViewController;

  @override
  void initState() {
    super.initState();

    //render the TeX once the input changes
    _textController.addListener(() {
      _mathViewController?.render(_textController.text);
    });
  }

  @override
  void dispose() {
    _textController.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('fluttex Example'),
          backgroundColor: Colors.black87,
        ),
        body: Column(
          children: <Widget>[
            Container(
              height: 150,
              child: MathViewStatic(
                displayMode: true,
                tex: "\\text{Static MathView Example} \\\\"
                    "\\int_{-\\infty}^\\infty \\hat f(\\xi)\\,e^{2 \\pi i \\xi x} \\,d\\xi \\\\"
                    "\\ce{\$K = \\frac{[\ce{Hg^2+}][\\ce{Hg}]}{[\\ce{Hg2^2+}]}\$}",
              ),
            ),
            Divider(),
            Text(
              "Dynamic MathView Example",
              textAlign: TextAlign.center,
              style: Theme.of(context).textTheme.subtitle2,
            ),
            Container(
              height: 200,
              child: MathViewStatic(
                key: UniqueKey(),
                displayMode: true,
                color: Colors.white,
                backgroundColor: Colors.black87,
                onMathViewCreated: (controller) {
                  _mathViewController = controller;
                },
              ),
            ),
            Divider(),
            TextField(
              controller: _textController,
              decoration: InputDecoration(
                hintText: "Starting typing to have the TeX be rendered above..."
              ),
            )
          ],
        ),
      ),
    );
  }
}
3
likes
40
pub points
0%
popularity

Publisher

verified publisherstaufer.me

Customizable Flutter plugin that renders TeX equations blazingly fast.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on fluttex