v0.1.0
appbar_elevation
एक फ्लटर विजेट जो शुरू में बॉडी के साथ फ्लश होता है और स्क्रॉल करने पर ऊपर उठता है।
17लाइक 4330-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
एक फ्लटर विजेट जो एपबार के लिए है जो शुरू में बॉडी के साथ फ्लश होता है और स्क्रॉल करने पर उभरता है
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A Flutter Widget for an AppBar that is initially flush with the body and elevated when scrolled.
https://raw.githubusercontent.com/amitkot/appbar_elevation/HEAD/appbar_elevation.gif
Use the ScrollActivatedAppBarElevation widget to wrap a Scaffold that contains
a Scrollable view (e.g. ListView, CustomScrollView). The widget uses a
NotificationListener to detect the scroll position and provides an
appBarElevation value to be used.
@override
Widget build(BuildContext context) {
return ScrollActivatedAppBarElevation(
builder: (BuildContext context, double appBarElevation) {
return Scaffold(
appBar: AppBar(
elevation: appBarElevation,
),
body: ListView(
children: [
// ...
],
),
);
},
);
}
See example for full code.
BSD