Designs
This commit is contained in:
parent
7733727dac
commit
0e641e2172
|
|
@ -144,6 +144,8 @@ class _DesignEditState extends State<DesignEdit>
|
||||||
class DesignCode extends StatelessWidget {
|
class DesignCode extends StatelessWidget {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final localization = AppLocalization.of(context);
|
||||||
|
|
||||||
return Column(
|
return Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
|
@ -155,11 +157,24 @@ class DesignCode extends StatelessWidget {
|
||||||
onChanged: (dynamic value) {},
|
onChanged: (dynamic value) {},
|
||||||
items: ['Bootrap']
|
items: ['Bootrap']
|
||||||
.map((value) => DropdownMenuItem(
|
.map((value) => DropdownMenuItem(
|
||||||
value: value,
|
value: value,
|
||||||
child: Text(value),
|
child: Text(value),
|
||||||
))
|
))
|
||||||
.toList(),
|
.toList(),
|
||||||
labelText: '',
|
labelText: localization.cssFramework,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: AppDropdownButton<String>(
|
||||||
|
value: null,
|
||||||
|
onChanged: (dynamic value) {},
|
||||||
|
items: ['Bootrap']
|
||||||
|
.map((value) => DropdownMenuItem(
|
||||||
|
value: value,
|
||||||
|
child: Text(value),
|
||||||
|
))
|
||||||
|
.toList(),
|
||||||
|
labelText: localization.loadDesign,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
1970
lib/utils/i18n.dart
1970
lib/utils/i18n.dart
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue