Semantic UI vs Fomantic-UI #1422
-
Help WantedI want to know how easy is to migrate from semantic ui to fomantic ui |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You can do backup files of your current project. Then remove the semantic-ui package, and install fomantic-ui as described in documentation. If you've any customization for your UI theme, copy from your old semantic-ui project to fomantic-ui. FomanticUI uses the same process as SemanticUI, so you can follow the way you do for SemanticUI to customize the theme and configurations. And then build your files via gulp and then you're good to go. I think there shouldn't be any problem. All file names for CSS and JS are the same as SemanticUI, so I don't think you would need any further modifications to link to those CSS and JS files in your project. Of course, test everything after migration and make sure that your project is working properly as before. There would be slight differences of some UI components between the old SemanticUI and FomanticUI. You can compare by looking on FomanticUI website before migration. |
Beta Was this translation helpful? Give feedback.
-
Fomantic is 99% compatible to Semantic. Major difference is in usage of the rating module, but adjusting rating code is a couple of minutes to do. For a quick test if your current application works with fomantic, change your existing links to semantic.min.js and semantic.min.css to https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.js |
Beta Was this translation helpful? Give feedback.
-
Closing, because explanation how to easily switch are given. Feel free to add more questions in case it's still unclear to you |
Beta Was this translation helpful? Give feedback.
You can do backup files of your current project. Then remove the semantic-ui package, and install fomantic-ui as described in documentation.
If you've any customization for your UI theme, copy from your old semantic-ui project to fomantic-ui. FomanticUI uses the same process as SemanticUI, so you can follow the way you do for SemanticUI to customize the theme and configurations.
And then build your files via gulp and then you're good to go. I think there shouldn't be any problem. All file names for CSS and JS are the same as SemanticUI, so I don't think you would need any further modifications to link to those CSS and JS files in your project.
Of course, test everything after migration an…