bullseye/lib/prompt.dart
Tony Bark cacbfc5fda Massive overhaul
- The project was restarted using Android Studio.
- Adoptive platform-specific widgets has been removed due to build issues with Android.
- Dual-licensed under the BSD-3-Clause license and UNLICENSE.
2022-09-05 13:56:05 -04:00

16 lines
354 B
Dart

import 'package:flutter/material.dart';
class Prompt extends StatelessWidget {
Prompt({@required this.targetValue});
final int? targetValue;
@override
Widget build(BuildContext context) {
return Column(
children: <Widget>[
const Text("PUT THE BULLSEYE AS CLOSE YOU CAN TO"),
Text("$targetValue")
],
);
}
}