You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
429 B
14 lines
429 B
|
|
import 'package:cloud_car_internal/constants/api/app_theme.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:provider/provider.dart';
|
|
import '../providers/user_provider.dart';
|
|
|
|
class UserTool {
|
|
static UserProvider userProvider =
|
|
Provider.of<UserProvider>(Get.context!, listen: false);
|
|
static MyAppStyle get myAppStyle =>
|
|
Theme.of(Get.context!).extension<MyAppStyle>()!;
|
|
}
|