-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.dart
37 lines (32 loc) · 986 Bytes
/
main.dart
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
import 'package:flutter/material.dart';
import 'constants/constants.dart';
import 'screens/chat_screen.dart';
// void equalPress() {
// String finalUserInput = userInput;
// finalUserInput = userInput.replaceAll('x', '*');
// Parser p = Parser();
// Expression expression = p.parse(finalUserInput);
// ContextModel contextModel = ContextModel();
// double eval = expression.evaluate(EvaluationType.REAL, contextModel);
// answer = eval.toString();
// }
void main() {
runApp(MyApp());
}
//trial comment
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
scaffoldBackgroundColor: kScaffoldBackgroundColor,
appBarTheme: AppBarTheme(
color: kCardColor,
),
),
home: ChatScreen(),
);
}
}