6 lines
109 B
Dart
6 lines
109 B
Dart
|
import 'package:flutter/widgets.dart';
|
||
|
|
||
|
Widget chat(context) {
|
||
|
return const Center(child: Text("Chat"));
|
||
|
}
|