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

can't change the progress bar color in ios #843

Open
DeekanshuSaini opened this issue Jul 5, 2024 · 1 comment
Open

can't change the progress bar color in ios #843

DeekanshuSaini opened this issue Jul 5, 2024 · 1 comment

Comments

@DeekanshuSaini
Copy link

@diegotori using this to change the progress bar color but it is not changing it showing purple color by default .

chewieController = ChewieController(
videoPlayerController: controller,
autoPlay: false,
looping: true,
allowedScreenSleep: false,
showControlsOnInitialize: false,
cupertinoProgressColors: ChewieProgressColors(
playedColor: Color(0xffFD4146),
bufferedColor: Color(0xffFD4146),
),
materialProgressColors: ChewieProgressColors(
playedColor: Color(0xffFD4146),
bufferedColor: Color(0xffFD4146),
),
deviceOrientationsOnEnterFullScreen: [
DeviceOrientation.landscapeRight,
DeviceOrientation.landscapeLeft,
],
deviceOrientationsAfterFullScreen: [
DeviceOrientation.portraitDown,
DeviceOrientation.portraitUp,
],
errorBuilder: (BuildContext context, String errorMessage) {
print(errorMessage);
return Container(
alignment: Alignment.center,
padding: EdgeInsets.all(30),
child: Text(
errorMessage.contains("Source error") ||
errorMessage.contains("not have permission")
? "Invalid URL"
: errorMessage,
textAlign: TextAlign.center,
style: Platform.isIOS
? TextStyle(
color: AppColors.black,
fontSize: 21,
fontWeight: FontWeight.w600)
: TextStyle(color: AppColors.white,fontSize: 18),
));
},
);

@leanhdaoit
Copy link

You can change it in ThemeData

ThemeData(
   progressIndicatorTheme: ProgressIndicatorThemeData(color: Colors.red)
)

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

2 participants