21 lines
614 B
Dart
21 lines
614 B
Dart
import 'package:aitrainer_app/widgets/app_bar.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class TestSetEdit extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBarNav(depth: 1),
|
|
body: Container(
|
|
padding: EdgeInsets.all(20),
|
|
decoration: BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('asset/image/WT_black_background.jpg'),
|
|
fit: BoxFit.cover,
|
|
alignment: Alignment.center,
|
|
),
|
|
),
|
|
child: Text("H")));
|
|
}
|
|
}
|