mirror of
https://github.com/tonytins/bullseye.git
synced 2025-03-15 12:21:21 +00:00
- 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.
16 lines
354 B
Dart
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")
|
|
],
|
|
);
|
|
}
|
|
}
|