19 lines
483 B
Dart
19 lines
483 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
/// 标题栏高度
|
|
double titleBarHeight = 46.h;
|
|
|
|
/// TodayNewest高度
|
|
double todayNewestHeight = 65.h;
|
|
|
|
/// discover列表高度
|
|
double discoverListHeight = 1.sh -
|
|
MediaQuery.of(Get.context!).padding.top -
|
|
titleBarHeight -
|
|
todayNewestHeight -
|
|
15.h -
|
|
kBottomNavigationBarHeight -
|
|
MediaQuery.of(Get.context!).padding.bottom;
|