This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NAME | FireCMS | Agility CMS | ButterCMS | Contentful | Drupal | Ghost | GraphCMS | Keystone JS | Prismic | Sanity | Storyblok | Strapi | Wordpress - unite cms | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
**Installation** | ||||||||||||||
Open Source | β | β | β | β | β | β | β | β | β | β | β | β | β | |
Cloud Service | WIP | β | β | β | β | β | β | β | β | β | β | β | β | |
On Premises Installation | β | β | β | β | β | β | β | β | β | β | β | β | β | |
Cloud Service Hosted in Europe | β | β | ~ | β | β | ~ | β | β | ~ | β | β | ~ | β | |
Commercial Support Available? | β | β | β | β | β | β | β | β | β | β | β | β | β | |
Users | ||||||||||||||
User Management | β | β | β | β | β | β | β | β | β | β | β | β | β | |
Role Based Permissions | β | β | β | β | β | β | β | β | β | β | β | β | β |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
final routeObserver = RouteObserver<PageRoute>(); | |
final duration = const Duration(milliseconds: 300); | |
void main() => runApp(MaterialApp( | |
home: HomePage(), | |
navigatorObservers: [routeObserver], |