14 lines
376 B
Dart
14 lines
376 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
Widget GameHistoryEmptyBuilder(String message) {
|
|
return Container(
|
|
padding: EdgeInsets.only(top:100),
|
|
margin: EdgeInsets.only(left: 10, right: 10),
|
|
alignment: Alignment.topCenter,
|
|
child: Text(
|
|
"$message",
|
|
style: TextStyle(fontSize: 20),
|
|
textAlign: TextAlign.center,
|
|
)
|
|
);
|
|
} |