kikipoulet / CherylUI

MIT License
220 stars 6 forks source link

Button style conflict when using Suki and Cheryl #6

Closed fulco813 closed 3 months ago

fulco813 commented 4 months ago

Hi, I'm writing an Avalonia demo project, and I want to mainly use Suki controls, when it comes to Android and IOS, I want to use Bottom Tabs in Cheryl. So I install both, and my app window(running on Windows10) become like this👇 微信截图_20240529165138

kikipoulet commented 4 months ago

Hi,

I would advise you to not use both in the same project, there are probably some named use that are the same. If you really want to do so, maybe check that Cheryl is included before Suki, so Suki values overrides it if necessary.

For cross-platform development, I would advice you to make three seperate project.

To me, the benefit of cross-platform is not to be able to make one view for all the platforms, it's almost impossible to do it correctly, but to be able to use the same stack for everything. If you want to do a nice desktop UI and a nice Mobile UI, sharing the same view is impossible to me, no matter the framework btw.

Hope it helps you 👍

fulco813 commented 3 months ago

Thanks for your advice, that's helpful! Now I'm working on seperating core library from my original project.