Invoice designs

This commit is contained in:
Hillel Coren 2020-03-04 13:17:37 +02:00
parent ae2cd885cb
commit 8b38d51280
2 changed files with 0 additions and 23 deletions

View File

@ -69,18 +69,6 @@ const String kPlanEnterprise = 'enterprise';
const double kGutterWidth = 20; 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 kMinMajorAppVersion = 0;
const int kMinMinorAppVersion = 0; const int kMinMinorAppVersion = 0;
const int kMinPatchAppVersion = 0; const int kMinPatchAppVersion = 0;

View File

@ -232,17 +232,6 @@ class DesignSettings extends StatelessWidget {
label: localization.name, label: localization.name,
controller: nameController, 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>( AppDropdownButton<String>(
value: null, value: null,
onChanged: (dynamic value) {}, onChanged: (dynamic value) {},