You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
649 B
Dart
37 lines
649 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test_sa/new_views/common_widgets/default_app_bar.dart';
|
|
|
|
class ChatPage extends StatefulWidget {
|
|
ChatPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_ChatPageState createState() {
|
|
return _ChatPageState();
|
|
}
|
|
}
|
|
|
|
class _ChatPageState extends State<ChatPage> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: const DefaultAppBar(title: "Req No. 343443"),
|
|
body: Column(
|
|
children: [
|
|
|
|
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|