This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Technical and architectural audit of a system. This is an evolving documentation vault, not a codebase.
| import 'package:flutter/material.dart'; | |
| class OutlinedInputBorder extends InputBorder { | |
| /// Creates a rounded rectangle outline border for an [InputDecorator]. | |
| /// | |
| /// If the [borderSide] parameter is [BorderSide.none], it will not draw a | |
| /// border. However, it will still define a shape (which you can see if | |
| /// [InputDecoration.filled] is true). | |
| /// | |
| /// If an application does not specify a [borderSide] parameter of |
| import 'package:flutter/material.dart'; | |
| class OverlayWithHole extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| appBar: AppBar(title: Text("Flutterclutter: Holes")), | |
| body: _getExperimentOne() | |
| ); | |
| } |