Oliver Sand

Results 12 issues of Oliver Sand

**Is your feature request related to a problem? Please describe.** Running a lighthouse audit on my side, I get the following suggestion: > Defer offscreen images > > Consider lazy-loading...

enhancement
good first issue
triage

While testing builders I noticed that [`testBuilder`](https://github.com/dart-lang/build/blob/master/build_test/lib/src/test_builder.dart#L127) only work for normal builders, but not for `PostProcessBuilder`. Having a `testPostProcessingBuilder` would be a nice addition. We have something like this in...

## Describe the bug When using the dark theme, the example values are hard to read. It feels like these color values are not taken from the theme, but are...

t/bug
triaged
p/documented

I love the idea of the empty state panels. I switched some of our components to the new one that also displays an example for the annotation to add. That...

enhancement
good first issue
help wanted
design
accessibility
component
stale

A possible fix for #62. Usage: ``` import 'package:postgresql/postgresql.dart'; main() async { var uri = 'postgres://test:test@localhost:5432/test'; var connection = await connect(uri); final stream = connection.listen('test'); var sub; sub = stream.listen((e)...

Parent classes that only have a single child (e.g. because they are open for extension, but not yet have more children) are generating a wrong schema. The emitted oneOf element...

This is the first time I worked with Scala 😄 Looks like there were some untested pieces around default values and examples for the number type. I added the missing...

### Summary I'm using the new app-dir router. I want to use [`dynamic` = `error`](https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic) for my API route that have access to data and build time, but not later...

type: bug
v4

## What happened? I created the following program in Dart Pad: ``` import 'dart:typed_data' ; import 'dart:math'; extension type Vector3(Float32List storage) { Vector3.zero() : storage = new Float32List.fromList([0.0, 0.0, 0.0]);...