23 lines
551 B
Dart
23 lines
551 B
Dart
// Author: fengshengxiong
|
|
// Date: 2024/5/8
|
|
// Description: 大小
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
/// 标题栏高度
|
|
double titleBarHeight = 45.h;
|
|
|
|
/// TodayNewest高度
|
|
double todayNewestHeight = 64.h;
|
|
|
|
/// discover列表高度
|
|
double discoverListHeight = 1.sh -
|
|
MediaQuery.of(Get.context!).padding.top -
|
|
titleBarHeight -
|
|
todayNewestHeight -
|
|
14.h -
|
|
kBottomNavigationBarHeight -
|
|
MediaQuery.of(Get.context!).padding.bottom;
|