Skip to content
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

I add a ScrollBar in flutter but it doesn't work #86

Open
Trung15010802 opened this issue Oct 26, 2023 · 0 comments
Open

I add a ScrollBar in flutter but it doesn't work #86

Trung15010802 opened this issue Oct 26, 2023 · 0 comments

Comments

@Trung15010802
Copy link

My code:

SizedBox(
          height: 100,
          width: 500,
          child: Scrollbar(
            controller: _dateScrollController,
            child: DatePicker(
              DateTime(2023, 10, 20),
              initialSelectedDate: DateTime.now(),
              selectionColor: Colors.black,
              locale: 'vi-VN',
              selectedTextColor: Colors.white,
              onDateChange: (date) {
                // New date selected
                setState(() {
                  // _selectedValue = date;
                });
              },
            ),
          ),
        ),

Result:
image

Error when scroll using scroll Bar:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant