Invoice designs
This commit is contained in:
parent
ae2cd885cb
commit
8b38d51280
|
|
@ -69,18 +69,6 @@ const String kPlanEnterprise = 'enterprise';
|
|||
|
||||
const double kGutterWidth = 20;
|
||||
|
||||
const String kFrameworkBulma = 'Bulma';
|
||||
const String kFrameworkTailwind = 'Tailwind';
|
||||
const String kFrameworkBootstrap = 'Bootstrap';
|
||||
const String kFrameworkFoundation = 'Foundation';
|
||||
|
||||
const List<String> kFrameworks = [
|
||||
kFrameworkTailwind,
|
||||
kFrameworkBootstrap,
|
||||
kFrameworkFoundation,
|
||||
kFrameworkBulma,
|
||||
];
|
||||
|
||||
const int kMinMajorAppVersion = 0;
|
||||
const int kMinMinorAppVersion = 0;
|
||||
const int kMinPatchAppVersion = 0;
|
||||
|
|
|
|||
|
|
@ -232,17 +232,6 @@ class DesignSettings extends StatelessWidget {
|
|||
label: localization.name,
|
||||
controller: nameController,
|
||||
),
|
||||
AppDropdownButton<String>(
|
||||
value: null,
|
||||
onChanged: (dynamic value) {},
|
||||
items: kFrameworks
|
||||
.map((value) => DropdownMenuItem(
|
||||
value: value,
|
||||
child: Text(value),
|
||||
))
|
||||
.toList(),
|
||||
labelText: localization.cssFramework,
|
||||
),
|
||||
AppDropdownButton<String>(
|
||||
value: null,
|
||||
onChanged: (dynamic value) {},
|
||||
|
|
|
|||
Loading…
Reference in New Issue