Skip to content

Instantly share code, notes, and snippets.

View NicolaVerbeeck's full-sized avatar

Nicola Verbeeck NicolaVerbeeck

  • Chimerapps
  • Belgium
View GitHub Profile
@NicolaVerbeeck
NicolaVerbeeck / main.dart
Created August 27, 2025 10:42
Blend mode fun times
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
runApp(
Directionality(
textDirection: TextDirection.ltr,
child: Stack(
children: [
RepaintBoundary(child: CustomPaint(painter: _DrawRectPainter())),
@NicolaVerbeeck
NicolaVerbeeck / EncryptedFileStorage.kt
Last active May 21, 2025 11:35
Encrypted file storage for data store
package com.a.b
import android.content.Context
import androidx.annotation.GuardedBy
import androidx.datastore.core.ReadScope
import androidx.datastore.core.Serializer
import androidx.datastore.core.Storage
import androidx.datastore.core.StorageConnection
import androidx.datastore.core.WriteScope
import androidx.datastore.core.use