mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
342 B
14 lines
342 B
import 'package:flutter/material.dart';
|
|
import 'package:pinball_theme/pinball_theme.dart';
|
|
|
|
/// {@template sparky_theme}
|
|
/// Class defining Sparky theme assets and attributes.
|
|
/// {@endtemplate}
|
|
class SparkyTheme extends PinballTheme {
|
|
/// {@macro sparky_theme}
|
|
const SparkyTheme();
|
|
|
|
@override
|
|
Color get ballColor => Colors.orange;
|
|
}
|