saminsohag

equeation alignment fixed

## 0.0.3
* Equation alignment fixed.
## 0.0.2
* Improved documentation.
... ...
... ... @@ -7,15 +7,20 @@ export 'package:flutter_math_fork/flutter_math.dart';
/// A Calculator.
class TexText extends StatelessWidget {
const TexText(this.text,
{super.key, this.style, this.mathStyle = MathStyle.display});
{super.key,
this.style,
this.mathStyle = MathStyle.display,
this.alignment = WrapAlignment.start});
final String text;
final TextStyle? style;
final MathStyle mathStyle;
final WrapAlignment alignment;
@override
Widget build(BuildContext context) {
return Wrap(
alignment: WrapAlignment.start,
alignment: alignment,
crossAxisAlignment: WrapCrossAlignment.center,
spacing: 4,
children: text
.split("<m>")
... ...
name: tex_text
description: This package for Flutter allows you to show text on a Flutter app with LaTex math formula and normal text from string. It is vary easy to use and works for all of the platforms.
version: 0.0.2
version: 0.0.3
homepage: https://github.com/saminsohag/flutter_packages/tree/main/tex_text
environment:
... ...