mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-07 19:46:32 +08:00
20 lines
423 B
Dart
20 lines
423 B
Dart
import 'package:flutter/material.dart';
|
|
import 'listwheel.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
theme: ThemeData.dark().copyWith(
|
|
scaffoldBackgroundColor: Color(0XFF0A0E21),
|
|
),
|
|
home: Listwheel(),
|
|
);
|
|
}
|
|
}
|