27b5342132
(cherry picked from commit 4d8a7590e11044963093a98095948d9820f34efb)
18 lines
588 B
Dart
18 lines
588 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class PopupItemWidgetStyle {
|
|
static const double iconSize = 24;
|
|
static const double selectedIconSize = 16;
|
|
static const double space = 12;
|
|
static const double height = 48;
|
|
static const double minWidth = 256;
|
|
|
|
static const EdgeInsetsGeometry padding = EdgeInsets.symmetric(horizontal: 20, vertical: 16);
|
|
static const EdgeInsetsGeometry iconSelectedPadding = EdgeInsetsDirectional.only(start: 12);
|
|
|
|
static const TextStyle labelTextStyle = TextStyle(
|
|
fontSize: 17,
|
|
fontWeight: FontWeight.normal,
|
|
color: Colors.black
|
|
);
|
|
} |