mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
e0864768c2
* refactor(mobile): make location picker scaffold primary * chore(mobile): update map heatmap colors * style(mobile): map bottomsheet - only use borders on top * fix(mobile): location picker show buttons above navigation bar * fix: crash on iOS due to heatmap invalid color format * disable rotate --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
37 lines
1.2 KiB
Dart
37 lines
1.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension ContextHelper on BuildContext {
|
|
// Returns the current padding from MediaQuery
|
|
EdgeInsets get padding => MediaQuery.paddingOf(this);
|
|
|
|
// Returns the current width from MediaQuery
|
|
double get width => MediaQuery.sizeOf(this).width;
|
|
|
|
// Returns the current height from MediaQuery
|
|
double get height => MediaQuery.sizeOf(this).height;
|
|
|
|
// Returns true if the app is running on a mobile device (!tablets)
|
|
bool get isMobile => width < 550;
|
|
|
|
// Returns the current ThemeData
|
|
ThemeData get themeData => Theme.of(this);
|
|
|
|
// Returns true if the app is using a dark theme
|
|
bool get isDarkTheme => themeData.brightness == Brightness.dark;
|
|
|
|
// Returns the current Primary color of the Theme
|
|
Color get primaryColor => themeData.primaryColor;
|
|
|
|
// Returns the Scaffold background color of the Theme
|
|
Color get scaffoldBackgroundColor => themeData.scaffoldBackgroundColor;
|
|
|
|
// Returns the current TextTheme
|
|
TextTheme get textTheme => themeData.textTheme;
|
|
|
|
// Current ColorScheme used
|
|
ColorScheme get colorScheme => themeData.colorScheme;
|
|
|
|
// Pop-out from the current context with optional result
|
|
void pop<T>([T? result]) => Navigator.of(this).pop(result);
|
|
}
|