Skip to content

Instantly share code, notes, and snippets.

View Skogsfrae's full-sized avatar
😱
Have we got stress? 🤪

Mirko Mucaria Skogsfrae

😱
Have we got stress? 🤪
View GitHub Profile
@Skogsfrae
Skogsfrae / main.dart
Created September 17, 2021 07:23
Flutter Custom Paint (masking arc with open path)
import 'package:flutter/material.dart';
import 'dart:math' as math;
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@Skogsfrae
Skogsfrae / qml_live_reload.go
Last active September 4, 2020 12:04
Live reload for Qt QML development on go with QQmlApplicationEngine
package main
import (
"log"
"os"
"github.com/fsnotify/fsnotify"
"github.com/therecipe/qt/core"
"github.com/therecipe/qt/gui"
"github.com/therecipe/qt/qml"