Skip to content

Instantly share code, notes, and snippets.

View mkieres's full-sized avatar

Mikolaj Kieres mkieres

View GitHub Profile
@mkieres
mkieres / tasks.json
Last active June 15, 2023 01:30
VS Code Flutter Code Generator Task
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
// See blog post https://nivisi.medium.com/tired-of-re-running-flutter-code-generation-heres-how-to-do-it-with-a-shortcut-in-vs-code-8f3fae216058
// for details on integrating
"version": "2.0.0",
"tasks": [
{
"label": "Flutter: Generate Code",
"type": "shell",
@mkieres
mkieres / flutter-code-snippets.json
Last active October 13, 2023 00:51
VS Code Dart Snippets
{
"Freezed Data Class": {
"prefix": "freezedClass",
"body": [
"import 'package:freezed_annotation/freezed_annotation.dart';",
"",
"part '${TM_FILENAME_BASE}.freezed.dart';",
"",
"@freezed",
"class ${2:DataClass} with _$${2:DataClass}{",
@mkieres
mkieres / vs-code-settings
Last active March 23, 2024 22:14
Visual Studio Code Settings
# VS Settings Sync
# Extensions
code --install-extension aaron-bond.better-comments
code --install-extension alefragnani.Bookmarks
code --install-extension CoenraadS.bracket-pair-colorizer-2
code --install-extension Dart-Code.dart-code
code --install-extension Dart-Code.flutter
code --install-extension DotJoshJohnson.xml
@mkieres
mkieres / xamarin-forms-android-aab-yaml-pipeline.yaml
Last active February 10, 2020 12:25
Create Xamarin.Forms Android App Bundle (aab) and release it to Google Play Store with DevOps YAML
trigger:
branches:
include:
# Your CI branch that the build should be triggered for
- vNext
stages:
- stage: Build
pool:
vmImage: 'windows-latest'