19 lines
396 B
Dart
19 lines
396 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
class ChattingDetails extends StatefulWidget {
|
||
|
|
@override
|
||
|
|
_ChattingDetailsState createState() => _ChattingDetailsState();
|
||
|
|
}
|
||
|
|
|
||
|
|
class _ChattingDetailsState extends State<ChattingDetails> {
|
||
|
|
|
||
|
|
TextEditingController _textEditingController =new TextEditingController();
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return Container(
|
||
|
|
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|