mirror of
https://github.com/ente-io/ente.git
synced 2025-05-29 05:51:19 +00:00
16 lines
422 B
Dart
16 lines
422 B
Dart
import 'package:expandable/expandable.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
Widget sectionOptionSpacing = const SizedBox(height: 6);
|
|
|
|
ExpandableThemeData getExpandableTheme() {
|
|
return const ExpandableThemeData(
|
|
hasIcon: false,
|
|
useInkWell: false,
|
|
tapBodyToCollapse: true,
|
|
tapBodyToExpand: true,
|
|
animationDuration: Duration(milliseconds: 400),
|
|
);
|
|
}
|