-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doesn't work with Sliver in CustomScrollView #5
Comments
I have the exact same problem |
I am trying to fix it. |
The problem might be caused by the fact that when a I might be wrong and I hope that there is an easy solution for using this package in Slivers because I just love it :D |
Some resources for my above comment: |
@aytunch Can you provide some sample code about your problem? |
@Foodnet24App Can you provide some sample code about your problem? |
this is sample code you can just replace it with the code in main.dart // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { class MyHomePage extends StatefulWidget { const MyHomePage({ @OverRide class _MyHomePageState extends State late TabController tabController;
} @OverRide class ExampleData { static List images = [ static List data = [ static Category category1 = Category( static Category category2 = Category( static Category category3 = Category( static Category category4 = Category( class Category { Category({ class Food { Food({ class CategorySection extends StatelessWidget { final Category category; @OverRide Widget _buildFoodTileList(BuildContext context) { Widget _buildSectionTileHeader(BuildContext context) { Widget _sectionTitle(BuildContext context) { Widget _sectionSubtitle(BuildContext context) { Widget _buildFoodTile({ Widget _buildFoodImage(String url) { Widget _buildFoodDetail({ Widget _buildSectionHoteSaleIcon() { Widget _buildFoodHotSaleIcon() { TextTheme _textTheme(context) => Theme.of(context).textTheme; |
You can find these issues from other similar packages |
@aytunch @Foodnet24App |
@wayne900204 thank you very much |
@aytunch @Foodnet24App |
@wayne900204 |
Yes, Well, VerticleScrollableTabview is a CustomScrollView. you can use VerticleScrollableTabviewlike a CustomScrollView |
I was trying to implement this module into Sliver in CustomScrollView
everything works fine but VerticalScrollableTabView.
it wasn't scrolled with Sliver
VerticalScrollableTabView only scroll with itself
is there any way to scroll in sliver in customScrollView??
The text was updated successfully, but these errors were encountered: