Results 9 issues of suojae

This update addresses compatibility issues with Flutter 3.0+ by replacing deprecated `bodyText2` references in the `TextTheme` with `bodyMedium`. ### Key Changes - Updated all instances of `bodyText2` in the codebase...

>Error (Xcode): ../../.pub-cache/hosted/pub.dev/flutter_neumorphic-3.2.0/lib/src/widget/container.dart:121:69: Error: The getter 'bodyText2' isn't defined for the class 'TextTheme'. ### Description The flutter_neumorphic package is currently using the deprecated bodyText2 property in TextTheme. This causes a...

Fixes #2553 ### Problem Description The current implementation of `AsyncSequence.asObservable()` can potentially execute on the main thread, which may cause UI blocking issues. This becomes especially problematic when the AsyncSequence...

Hi @SandroMaglione, I'm really enjoying using your package, thanks. and while using it, I came across something that I’d like to suggest as an improvement. In fpdart, Either provides both...

**PR Description** resolve: #162 - Added fold method to TaskEither for consistency with `Either.fold`. - fold behaves the same as match, allowing Left/Right case handling. - Included unit tests to...

**Fixes #12552** **Motivation** When a screen’s first `useEffect` fires before the `NavigationContainer` has called its `onReady` callback, any call to `navigation.navigate()` is silently dropped. This affects edge‐cases like redirecting from...

first pull request

This PR addresses the CI issues reported in the [previous PR](https://github.com/simolus3/drift/pull/3420). The CI failures appear to be environment-specific. #### Related Issue - Fixes #3419

[https://github.com/simolus3/drift/blob/develop/drift/lib/src/sqlite3/database_tracker.dart](https://github.com/simolus3/drift/blob/develop/drift/lib/src/sqlite3/database_tracker.dart) I noticed that the DatabaseTracker class currently lacks a dispose() method to explicitly close the _db resource. This could potentially lead to resource leaks, especially in long-running applications or...

enhancement

### Summary When headers contain non-ASCII characters, the error message now includes the header name to make debugging easier. **Before:** ```python httpx.Headers({"Authorization": "Bearer valid", "X-Custom": "안녕"}) # UnicodeEncodeError: 'ascii' codec...