smart_select 3.0.3 smart_select: ^3.0.3 copied to clipboard
Smart select allows you to easily convert your usual form selects into dynamic pages with various choices input.
import 'package:flutter/material.dart';
import 'features.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Smart Select',
home: Features(),
);
}
}