Skip to content

Instantly share code, notes, and snippets.

View VB10's full-sized avatar
🏠
Working from home

Veli Bacik VB10

🏠
Working from home
View GitHub Profile
@VB10
VB10 / deploy.yml
Created January 6, 2025 21:47
Hatay'ı Yasat Web Publish Yaml
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools
name: Deploy to Firebase Hosting on PR
on:
pull_request:
branches:
- release
types: [closed]
@VB10
VB10 / prod_env.dart
Created January 2, 2025 22:17
Environment usage for general
import 'package:envied/envied.dart';
import 'package:gen/src/environment/app_configuration.dart';
part 'prod_env.g.dart';
@Envied(path: 'assets/env/.prod.env', obfuscate: true)
/// Production environment variables
final class ProdEnv implements AppConfiguration {
@EnviedField(varName: 'BASE_URL')
@VB10
VB10 / build.yaml
Created December 24, 2024 22:23
Build yaml for only work view file
targets:
$default:
builders:
auto_route_generator:auto_route_generator: # this for @RoutePage
generate_for:
- lib/**/**_view.dart
auto_route_generator:auto_router_generator: # this for @AutoRouterConfig
generate_for:
- lib/product/navigation/app_router.dart
@VB10
VB10 / post_curl.sh
Created November 13, 2024 22:35
Firebase emulator ready to use cUrl
curl --request POST \
--url 'http://localhost:3002/v1/projects/PROJECT_NAME/databases/(default)/documents/COLLECTION_NAME' \
--header 'Content-Type: application/json' \
--data '{
"fields": {
"address": {
"stringValue": "Örnek Mahallesi Test Sokak Numara 123"
},
"createdAt": {
"timestampValue": "2023-08-15T10:30:25Z"
@VB10
VB10 / success_snack_bar.dart
Created October 27, 2024 23:42
Success snackbar
/// Show success snack bar
/// Message: [LocaleKeys.message_saveOnSuccess]
final class SuccessSnackBar extends SnackBar {
SuccessSnackBar({super.key})
: super(content: Text(LocaleKeys.message_saveOnSuccess.tr()));
static void show(BuildContext context) {
ScaffoldMessenger.of(context).showSnackBar(
SuccessSnackBar(),
);
@VB10
VB10 / error_manage_widget_with_exception.dart
Created May 28, 2024 22:22
Error Handling from widget with exception manager
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
class User {
final String? name;
final int? age;
const User(this.name, this.age);
bool isEmpty() {
@VB10
VB10 / number_extension.dart
Created May 17, 2024 11:18
Take a count of digit in any number
extension NumberExtension on num {
/// This method is used to take the first [count] digits of the number.
///
/// if the number is 59342394234 and [count] is 2, the result will be 59.
/// number less than [count] will return 0.
num takeDigits(int count) {
final value = toString();
final isValueLengthValid = value.length >= count;
if (!isValueLengthValid) return 0;
return num.parse(value.substring(0, count));
import 'package:flutter/material.dart';
import 'package:vbaseproject/features/v2/demo/home_veli_view.dart';
mixin HomeVeliMixin on State<HomeVeliView> {
void showErrorMessage();
void fetchUserDeteail({required String id}) {
const response = true;
if (!response) return;
showErrorMessage();
final class NetworkManager: NetworkManagerCore {
var config: NetworkConfig = .init(baseUrl: "")
/// Send your request without model paramaters
/// - Parameters:
/// - path: NetworkPath value
/// - method: HTTPMethod value
/// - type: Decoded model
/// - Returns: Success encoded model or
func send<T: Decodable>(path: NetworkPath, method: HTTPMethod, type: T.Type) async -> Result<T?, Error> {
@VB10
VB10 / future_timeout.dart
Last active September 28, 2023 14:44
Timeout
extension FutureExtension<T> on Future<T> {
Future<T?> timeoutOrNull({
Duration timeOutDuration = const Duration(seconds: 10),
bool enableLogger = true,
}) async {
try {
final response = await timeout(timeOutDuration);
return response;
} catch (e) {
if (enableLogger) CustomLogger.log('$T $e');