bullseye/lib/prompt.dart
Tony Bark 9e475f6a34 Added prompt and control widgets
- Updated iOS portion of project
- Always to default landscape
2021-05-28 04:59:28 -04:00

17 lines
377 B
Dart

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