E.Z. Hart

Results 20 issues of E.Z. Hart

### Description of Change Adds `EffectiveFlowDirection` to IView as described in #9326. This will partially (perhaps fully) address #8175. ### Issues Fixed Fixes #9326

Because the IView interface does not provide a way to query the `FlowDirection` that is currently in effect, at the moment we use the `GetEffectiveFlowDirection()` extension method. Computing the effective...

# The Problem When dealing with text in an application, we have to answer a few questions: 1. Is this text allowed to wrap to multiple lines? 2. If so,...

proposal/open
area/controls 🎮

Need to update the docs at https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/device/display?tabs=windows#keep-the-screen-on to include the detail that the property won't work until the Activity.Window is available. Alternatively, we need to update the property so that...

area/docs 📓
area/essentials 🍞

### Description of Change Add very basic automated accessibility testing for Android to Core device tests. Keeping this a draft until #11021 is merged, will update it after that. This...

area/testing

I've got a bot running as a service and occasionally after a few days of inactivity in the room to which it's connected the bot's user no longer shows up...

### Description of Change Replace existing image with nothing when image source is set to `null`; replace existing image with nothing when new image results in a loading error. ###...

area/controls 🎮
control-image

### Description of Change The MauiScrollView knows what height the nested HorizontalScrollView _should_ be, but the default measurement system just sees it as vertical ScrollView content and measures it with...

area/layout 🔲

### Description of Change Disables all caching when loading images from streams, because there's no available data for creating a reasonable cache key. See [this comment](https://github.com/dotnet/maui/issues/8676#issuecomment-1416183584) for a deeper explanation....

area/image :framed_picture:

### Description of Change Replace Wait() calls with method which Asserts the results of the Task so we have a clearer idea where the tests fail; remove extra post-Wait() assertions....