bdlukaa / fluent_ui

Implements Microsoft's WinUI3 in Flutter.
https://bdlukaa.github.io/fluent_ui/
BSD 3-Clause "New" or "Revised" License
2.91k stars 454 forks source link

Built-in sliver widgets #612

Open tukiri opened 1 year ago

tukiri commented 1 year ago

In fluent_ui,i can't find the SliverAppBar widget. But,the SliverAppBar can achieve this : 10edbf8a981fee13c8722cc2a3f8802e (1) Can fluent_ui have any other way to achieve that? Or is there any way to use flutter widget in fluent_ui?

bdlukaa commented 1 year ago

Since Slivers are not widely used in the desktop platforms, they were not implemented into this package. Still, you can use slivers because they're part of the flutter/widgets library. For material slivers, you may need to use named imports

tukiri commented 1 year ago

由于 Slivers 在桌面平台中没有广泛使用,因此它们没有实现到这个包中。不过,您可以使用薄片,因为它们是库的一部分。对于材质薄片,可能需要使用命名导入flutter/widgets

thank you,i success make it good work!