mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 09:54:12 +08:00
22 lines
405 B
Dart
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(),
|
|
);
|
|
}
|
|
}
|