mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-22 22:20:43 -04:00
settings / preferences upate
This commit is contained in:
parent
1455aabe6c
commit
d962f98786
26 changed files with 1015 additions and 125 deletions
|
@ -19,6 +19,14 @@ extension BorderExt on Widget {
|
|||
child: this);
|
||||
}
|
||||
|
||||
extension SizeToFixExt on Widget {
|
||||
FittedBox fit({BoxFit? fit, Key? key}) => FittedBox(
|
||||
key: key,
|
||||
fit: fit ?? BoxFit.scaleDown,
|
||||
child: this,
|
||||
);
|
||||
}
|
||||
|
||||
extension ModalProgressExt on Widget {
|
||||
BlurryModalProgressHUD withModalHUD(BuildContext context, bool isLoading) {
|
||||
final theme = Theme.of(context);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue