Line data Source code
1 : import 'package:flutter/material.dart'; 2 : 3 : class MessageLoadingBubble extends StatefulWidget { 4 0 : @override 5 0 : MessageLoadingBubbleState createState() => MessageLoadingBubbleState(); 6 : } 7 : 8 : class MessageLoadingBubbleState extends State<MessageLoadingBubble> { 9 0 : @override 10 : Widget build(BuildContext context) { 11 0 : return Center(child: Row(children: [SizedBox(width: 40, height: 100, child: Text(""))])); 12 : } 13 : }