main.dart 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import 'package:flutter/material.dart';
  2. import 'examples/advanced/index.dart';
  3. import 'examples/basic/index.dart';
  4. void main() => runApp(MyApp());
  5. /// This widget is the root of your application.
  6. class MyApp extends StatelessWidget {
  7. final _DATA = [...Basic, ...Advanced];
  8. @override
  9. Widget build(BuildContext context) {
  10. return MaterialApp(
  11. theme: ThemeData(
  12. primarySwatch: Colors.blue,
  13. ),
  14. home: Scaffold(
  15. appBar: AppBar(
  16. title: const Text('APIExample'),
  17. ),
  18. body: ListView.builder(
  19. itemCount: _DATA.length,
  20. itemBuilder: (context, index) {
  21. return _DATA[index]['widget'] == null
  22. ? Ink(
  23. color: Colors.grey,
  24. child: ListTile(
  25. title: Text(_DATA[index]['name'] as String,
  26. style: TextStyle(fontSize: 24, color: Colors.white)),
  27. ),
  28. )
  29. : ListTile(
  30. onTap: () {
  31. Navigator.push(
  32. context,
  33. MaterialPageRoute(
  34. builder: (context) => Scaffold(
  35. appBar: AppBar(
  36. title:
  37. Text(_DATA[index]['name'] as String),
  38. ),
  39. body: _DATA[index]['widget'] as Widget?,
  40. )));
  41. },
  42. title: Text(
  43. _DATA[index]['name'] as String,
  44. style: TextStyle(fontSize: 24, color: Colors.black),
  45. ),
  46. );
  47. },
  48. ),
  49. ),
  50. );
  51. }
  52. }