refi64
refi64
Private types get their leading underscore stripped off, but the lint wasn't accounting for that, so it would end up trying to change the type name to one that does...
The tests were failing because they were printing the color codes as a Color instance instead of the numeric value.
### Summary https://play.ty.dev/2314690d-c925-4cc1-a5cc-418c928628ca ```python from typing import reveal_type import enum class E(enum.Enum): A = enum.auto() X = enum.nonmember(123) reveal_type(E.X) # Revealed type: `Unknown | nonmember[int]` ``` This really should just...
If the valueListenable is set *separately* from the items changing, the selected item wouldn't change, which can cause issues if they're e.g. loaded in separately. Fixes: #392
Sample reproducer (in a new `flutter create` project, with `dropdown_button2: 3.0.0-beta.22`): ```dart import 'package:flutter/material.dart'; import 'package:dropdown_button2/dropdown_button2.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override...
Tested with `3.0.0-beta.22`. I have a basic `flutter create` app, where I modified the `Column` in the default `lib/main.dart` to be: ```dart // [snip] body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center,...