MadhavBahl /
Flutter-Simple-Weather
Simple Weather Application Made In Flutter
Loading repository data…
become-iron / repository
Simple weather application
A simple weather application.
Design: Weather App | Template.
material_symbols_icons - Google Material Symbols Icons.google_fonts - Google Fonts.geolocator - geolocation plugin.http - HTTP requests.flutter_dotenv - load configuration from a .env file.freezed with json_serializable - immutable serializable data models.shared_preferences - persistent storage for simple data.logger - logger.riverpod - state management.flutter analyze - analyze the project's Dart code.dart fix --apply - apply automated fixes to Dart source code.dart run build_runner build - run build scripts (e.g., generate freezed models).dart run build_runner watch - same as above, but in watch mode.flutter test - run Flutter unit tests.flutter build apk --split-per-abi - build APKs.WEATHER_SERVICE_APP_ID - an application id to use OpenWeatherMap API (not safe in terms of
security).Create a file with environment variables and fill it with the correct values.
cp .env.example .env.local
Generate auxiliary files.
dart run build_runner build
Hide generated files: https://stackoverflow.com/a/69728616/4729582.
Add a live template to generate freezed models:
@freezed
class $NAME$ with _$$$NAME$ {
const factory $NAME$({
$END$,
}) = _$NAME$;
factory $NAME$.fromJson(Map<String, Object?> json) => _$$$NAME$FromJson(json);
}
Selected from shared topics, language and repository description—not editorial ratings.
MadhavBahl /
Simple Weather Application Made In Flutter
eetpit /
Simple mobile applications for fetching weather data, made with Flutter SDK and native development tools
felipebgoulart /
Weather is a simple weather application for getting your current forecast.
0xcabrex /
Simple Weather app with a search function and a dynamic background
cvora51 /
A simple Flutter Weather application
a3ro-dev /
A simple Flutter application to display weather information for a given city.