minh_weather_app 1.0.0+1
minh_weather_app: ^1.0.0+1 copied to clipboard
A new Flutter package display weather.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add minh_weather_appThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
minh_weather_app: ^1.0.0+1Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:minh_weather_app/app.dart';
import 'package:minh_weather_app/bloc_observe.dart';
import 'package:minh_weather_app/features/weather/data/data_source/weather_data_source.dart';
import 'package:minh_weather_app/features/weather/data/models/location_model.dart';
import 'package:minh_weather_app/features/weather/data/models/weather_model.dart';
import 'package:minh_weather_app/features/weather/data/repositories/weather_repositories_impl.dart';
import 'package:minh_weather_app/features/weather/domain/entities/weather.dart';
import 'package:minh_weather_app/features/weather/domain/mapper/mappers.dart';
import 'package:minh_weather_app/features/weather/domain/repositories/weather_repository.dart';
import 'package:minh_weather_app/features/weather/domain/use_cases/weather_usecase.dart';
import 'package:minh_weather_app/features/weather/presentation/cubit/theme_cubit.dart';
import 'package:minh_weather_app/features/weather/presentation/cubit/weather_cubit.dart';
import 'package:minh_weather_app/features/weather/presentation/cubit/weather_state.dart';
import 'package:minh_weather_app/features/weather/presentation/view/search_screen.dart';
import 'package:minh_weather_app/features/weather/presentation/view/setting_screen.dart';
import 'package:minh_weather_app/features/weather/presentation/view/weather_screen.dart';
import 'package:minh_weather_app/features/weather/presentation/weather_bloc.dart';
import 'package:minh_weather_app/features/weather/presentation/widget/weather_empty.dart';
import 'package:minh_weather_app/features/weather/presentation/widget/weather_error.dart';
import 'package:minh_weather_app/features/weather/presentation/widget/weather_loading.dart';
import 'package:minh_weather_app/features/weather/presentation/widget/weather_populated.dart';
import 'package:minh_weather_app/mini_app.dart';
import 'package:minh_weather_app/weather_app.dart';