Move to Flutter 3.47, use the improvements that come with this (#64)
Reviewed-on: #64
This commit is contained in:
parent
01b13b4764
commit
077044ec19
157 changed files with 1366 additions and 1457 deletions
|
|
@ -1,16 +1,13 @@
|
|||
import "package:flutter/material.dart";
|
||||
import "package:material_ui/material_ui.dart";
|
||||
|
||||
class Setting {
|
||||
final String title;
|
||||
final String description;
|
||||
final IconData icon;
|
||||
final Widget Function(String title, String description, IconData icon)
|
||||
builder;
|
||||
|
||||
Setting({
|
||||
required this.title,
|
||||
required this.description,
|
||||
required this.builder,
|
||||
required this.icon,
|
||||
});
|
||||
}
|
||||
class Setting({
|
||||
required final String title,
|
||||
required final String description,
|
||||
required final IconData icon,
|
||||
required final Widget Function(
|
||||
String title,
|
||||
String description,
|
||||
IconData icon,
|
||||
)
|
||||
builder,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue