Files
TubeCards/lib/widgets/simple_skeleton.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

22 lines
405 B
Dart

import 'package:flutter/material.dart';
class SimpleSkeleton extends StatelessWidget {
const SimpleSkeleton({
this.appBarTitle = '',
Key? key,
}) : super(key: key);
final String appBarTitle;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(appBarTitle),
elevation: 0,
),
body: Container(),
);
}
}