[Mobile] InlineStyle background is not being applied
This image shows a Code block followed by an inline code. Both has the same styles, but the background color of inline code is not applied (even if I set it to Color.red).
I'm experiencing this too. I'll be setting the text color to black for the time being.
Using flutter_quill: 6.1.5 and Flutter stable 3.3.10
I'm still experiencing this issue on 8.3.0. Did you mean to close this issue?
Update: InlineCodeStyle.backgroundColor does nothing, but InlineCodeStyle.style.backgroundColor works.
We might need to remove InlineCodeStyle.backgroundColor or fix it.
inlineCode: InlineCodeStyle(
backgroundColor: Colors.red, // does nothing
style: GoogleFonts.firaMono(textStyle: textTheme.bodyLarge!).copyWith(
color: Colors.white,
backgroundColor: Colors.green, // this works
),
),
Update 2: InlineCodeStyle.style.backgroundColor doesn't actually change the backgroundColor as expected. See this screenshot where the original grey color is still visible underneath the green from the above code sample. We can also observe in the second screenshot that InlineCodeStyle.style.backgroundColor is even worse with transparency (green with 20% opacity), since the original grey is still behind it.
I'm still experiencing this issue on 8.3.0. Did you mean to close this issue?
Hi, I didn't check it since there were more than 170 issues
So I closed the old issues since it's not applicable anymore
There are no interactions with it
I'm still experiencing this issue on 8.3.0. Did you mean to close this issue?
Reopened.