Files
TubeCards/lib/modules/home/component/utils/home_skeleton.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

17 lines
329 B
Dart

import 'package:flutter/material.dart';
class HomeSkeleton extends StatelessWidget {
const HomeSkeleton({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
elevation: 0,
),
body: Container(),
);
}
}