This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://youtu.be/IrikTTKjCyo | |
| GCLOUD ayarları: | |
| gcloud init | |
| gcloud services enable aiplatform.googleapis.com --project=<PROJE_ID> | |
| gcloud projects add-iam-policy-binding <PROJE_ID> --member="user:<MAIL_ADRESİNİZ>" --role="roles/aiplatform.user" | |
| env ayarla: | |
| GOOGLE_CLOUD_PROJECT= | |
| GOOGLE_CLOUD_LOCATION=global |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://kodlayalim.net/ | |
| //--------------main.dart------------------// | |
| import 'package:timezone/data/latest.dart' as tz; | |
| void main() async { | |
| await WidgetsFlutterBinding.ensureInitialized(); | |
| await NotificationHelper.initialize(); | |
| tz.initializeTimeZones(); | |
| runApp(const MyApp()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class Responsive extends StatelessWidget { | |
| final Widget mobile; | |
| final Widget? tablet; | |
| final Widget desktop; | |
| const Responsive({ | |
| Key? key, | |
| required this.mobile, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| main.dart | |
| commons | |
| ├───enums | |
| │ post_filter_enum.dart | |
| │ | |
| ├───extensions | |
| │ context_extensions.dart | |
| │ datetime_formatter.dart | |
| │ extensions.dart |