18 lines
417 B
Dart
18 lines
417 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class ScoreBoard extends StatelessWidget {
|
||
|
const ScoreBoard({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container(
|
||
|
width: 250,
|
||
|
height: 200,
|
||
|
decoration: const BoxDecoration(
|
||
|
image: DecorationImage(
|
||
|
image: AssetImage('assets/images/content_score_board.png'),
|
||
|
)
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|