main.dart
1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import 'package:flutter/material.dart';
import 'package:tex_text/tex_text.dart';
void main(List<String> args) {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final TextEditingController _text = TextEditingController();
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text("Tex Text.")),
body: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
AnimatedBuilder(
animation: _text,
builder: (context, child) {
return TexText(
_text.text,
alignment: TexAlignment.start,
style: Theme.of(context)
.textTheme
.titleLarge
?.copyWith(color: Colors.red),
mathStyle: MathStyle.text,
);
}),
const SizedBox(
height: 100,
),
TextField(
controller: _text,
maxLines: null,
decoration: const InputDecoration(
border: OutlineInputBorder(),
),
),
],
),
),
),
);
}
}