19 lines
364 B
Dart
19 lines
364 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Hinweise extends StatefulWidget {
|
|
const Hinweise({super.key});
|
|
|
|
@override
|
|
State<Hinweise> createState() => _HinweiseState();
|
|
}
|
|
|
|
class _HinweiseState extends State<Hinweise> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
height: 30,
|
|
child: const Placeholder());
|
|
|
|
}
|
|
}
|