Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Scope Playground Example

Purpose & Scope

scope_playground demonstrates scope hierarchy behavior and isolation guarantees in a Flutter UI.

Conceptual Overview

The example focuses on:

  • Nested scopes created with LScope.
  • Local overrides per subtree.
  • Deterministic cleanup when scoped widgets unmount.

Getting Started

flutter pub get
flutter run

Design Principles

  • Scope boundaries should mirror UI ownership boundaries.
  • Child scope overrides must remain isolated from parents.
  • Disposal behavior should be explicit and observable.