implementation of listwheelscrollview widget (#65)

This commit is contained in:
ralphcoder
2021-07-26 00:29:50 +05:30
committed by GitHub
parent ef8f5fd321
commit 4b66929f42
73 changed files with 1938 additions and 0 deletions

View File

@ -0,0 +1,19 @@
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(),
);
}
}