Flutter: ClipRRect vs Container with BoxDecoration

2019-08-19 03:59发布

问题:

I know that ClipRRect has additional options like custom clipper. But if I need just a simple border radius is there any performance difference? Which one is more recommended?

回答1:

If your goal is to create a rounded border, you must use clippers only in the last situation, when containers may not help. For example, images can draw over rounded borders, so you have no other option unless clipping the image.



标签: flutter dart