2

Can I use them separately? Can I use them with other solutions such as polymer?

jumperchen
  • 1,463
  • 12
  • 27
Tom Yeh
  • 1,987
  • 2
  • 15
  • 23

1 Answers1

1

First, they are independent of each others. You can use them separately or together.

Rikulo UI is a UI framework providing structured UI model that are 100% controllable in Dart. While it gives the Dart developers better control of UI and layout, it is designed more for mobile and desktop-look applications (than website-look).

Bootjack is a porting of Bootstrap in Dart. While Bootstrap is famous for its lightweight JS and the magic use of HTML5/CSS3, Bootjack is aimed for website-look applications and developers that prefer to design UI with less Dart code.

Rikulo Gap is a bridge to Apache Cordova for building native mobile applications in Dart. It doesn't assume anything about UI, so you can use it with any UI frameworks you'd like, including Polymer and Angular.

Tom Yeh
  • 1,987
  • 2
  • 15
  • 23
  • To use several UI frameworks, such as Polymer and Bootjack, in one application, you usually need to take care of life cycle issues. – Tom Yeh Jul 15 '13 at 07:13