13 lines
280 B
Dart
13 lines
280 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
class ChatScreen extends StatelessWidget {
|
||
|
|
const ChatScreen({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return const Center(
|
||
|
|
child: Text("Invoice Content He", style: TextStyle(fontSize: 18)),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|