bullseye/lib/prompt.dart

17 lines
354 B
Dart
Raw Permalink Normal View History

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")
],
);
}
}