KoderTitleBar
Ratified Desktop desktop-apps/title-bar-double-click.kmd
Custom desktop title bar with drag-to-move on non-interactive areas and a free-area subwidget for double-tap maximize. Replaces ad-hoc GestureDetector wrappers that hijack the gesture arena.
Demo
Static visual mock — pixel-faithful but non-interactive. Sprint 2.3 will swap selected demos for live Flutter Web embeds.
Body content — gestures here belong to the page, not the title bar.
Drag works on the empty area; double-tap on the free area maximizes; clicks on buttons do their own thing.
Availability
- Flutter (koder_kit)
koder_kit v0.16.0+
Flutter usage
import 'package:koder_kit/koder_kit.dart';Scaffold(
appBar: KoderTitleBar(
title: 'My App',
trailing: [KoderTitleBarFreeArea()],
),
)