cwtch-ui/lib/widgets/messageloadingbubble.dart

14 lines
403 B
Dart
Raw Normal View History

2021-06-24 23:10:45 +00:00
import 'package:flutter/material.dart';
class MessageLoadingBubble extends StatefulWidget {
@override
MessageLoadingBubbleState createState() => MessageLoadingBubbleState();
}
class MessageLoadingBubbleState extends State<MessageLoadingBubble> {
@override
Widget build(BuildContext context) {
return Center(child: Row(children: [SizedBox(width: 40, height: 100, child: Text(""))]));
}
}