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
scrcpy --video-codec=h265 --max-size=1920 --max-fps=60 --turn-screen-off --stay-awake --no-mouse-hover --always-on-top --no-audio |
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
alias brb="dart run build_runner build --delete-conflicting-outputs" | |
alias fdv="flutter doctor -v" | |
alias fd="flutter doctor" | |
alias fv="flutter --version" | |
alias buildapk="flutter build apk --split-per-abi --target-platform android-arm64,android-arm" |
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
// logger.dart | |
import 'dart:developer' as developer; | |
import 'package:flutter/foundation.dart'; | |
import 'package:intl/intl.dart'; | |
// ANSI color codes for colored output in the console | |
const String _reset = '\x1B[0m'; | |
const String _red = '\x1B[31m'; | |
const String _green = '\x1B[32m'; | |
const String _yellow = '\x1B[33m'; |
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
local wezterm = require 'wezterm' | |
local config = wezterm.config_builder() | |
config.color_scheme = 'Catppuccin Mocha' | |
config.window_background_opacity = 0.75 | |
config.macos_window_background_blur = 20 | |
config.integrated_title_buttons = { 'Close', 'Maximize' } | |
config.tab_bar_at_bottom = true |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDevelopmentRegion</key> | |
<string>$(DEVELOPMENT_LANGUAGE)</string> | |
<key>CFBundleExecutable</key> | |
<string>$(EXECUTABLE_NAME)</string> | |
<key>CFBundleIdentifier</key> | |
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> |
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package="com.baseflow.permissionhandler.example"> | |
<!-- | |
Internet permissions do not affect the `permission_handler` plugin, but are required if your app needs access to | |
the internet. | |
--> | |
<uses-permission android:name="android.permission.INTERNET"/> |
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
Show hidden characters
{ | |
"Default Minimal App System Theme": { | |
"scope": "dart", | |
"body": [ | |
"import 'package:flutter/material.dart';", | |
"", | |
"void main() {", | |
" runApp(MaterialApp(", | |
" title: 'Flutter Demo',", | |
" debugShowCheckedModeBanner: false,", |
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": false | |
}, |