All Projects → lirios → Fluid

lirios / Fluid

Licence: other
📖 Library for QtQuick apps with Material Design

Projects that are alternatives of or similar to Fluid

Material
A lightweight Material Design library for Angular based on Google's Material Components for the Web.
Stars: ✭ 143 (-76.21%)
Mutual labels:  material-design, material, material-components
React Md
React material design - An accessible React component library built from the Material Design guidelines in Sass
Stars: ✭ 2,284 (+280.03%)
Mutual labels:  material-design, material, material-components
Materialdesign2
A beautiful app designed with Material Design 2 using Android X.
Stars: ✭ 170 (-71.71%)
Mutual labels:  material-design, material, material-components
Smart Webcomponents
Web Components & Custom Elements for Professional Web Applications
Stars: ✭ 110 (-81.7%)
Mutual labels:  material-design, material, material-components
Android Iconics
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Stars: ✭ 4,916 (+717.97%)
Mutual labels:  material-design, material, material-components
Material Intro
A simple material design app intro with cool animations and a fluent API.
Stars: ✭ 1,718 (+185.86%)
Mutual labels:  material-design, material, material-components
Material Components Ios
[In maintenance mode] Modular and customizable Material Design UI components for iOS
Stars: ✭ 4,484 (+646.09%)
Mutual labels:  material-design, material, material-components
Material Components
Documentation and policies for Material Components (all platforms)
Stars: ✭ 872 (+45.09%)
Mutual labels:  material-design, material, material-components
Quasar
Quasar Framework - Build high-performance VueJS user interfaces in record time
Stars: ✭ 20,090 (+3242.76%)
Mutual labels:  material-design, material, material-components
Material Backdrop
A simple solution for implementing Backdrop pattern for Android
Stars: ✭ 221 (-63.23%)
Mutual labels:  material-design, material, material-components
Cyanea
A theme engine for Android
Stars: ✭ 1,319 (+119.47%)
Mutual labels:  material-design, material, material-components
Angular Mdc Web
Angular wrapper for Material Design (Web) Components
Stars: ✭ 542 (-9.82%)
Mutual labels:  material-design, material, material-components
Material Design Lite
Material Design Components in HTML/CSS/JS
Stars: ✭ 31,931 (+5212.98%)
Mutual labels:  material-design, material, material-components
Ibackdrop
A library to simply use Backdrop in your project (make it easy). Read more ->
Stars: ✭ 137 (-77.2%)
Mutual labels:  material-design, material, material-components
Vuetify
🐉 Material Component Framework for Vue
Stars: ✭ 33,085 (+5404.99%)
Mutual labels:  material-design, material, material-components
Browser
🌍 Cross-platform Material design web browser
Stars: ✭ 184 (-69.38%)
Mutual labels:  material-design, qt5, qml
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+30.28%)
Mutual labels:  material-design, material, material-components
Matter
Material Design Components in Pure CSS. Materializing HTML at just one class per component 🍰
Stars: ✭ 888 (+47.75%)
Mutual labels:  material-design, material, material-components
Material Admin
Free Material Admin Template
Stars: ✭ 219 (-63.56%)
Mutual labels:  material-design, material, material-components
Svelte Materialify
A Material UI Design Component library for Svelte heavily inspired by vuetify.
Stars: ✭ 351 (-41.6%)
Mutual labels:  material-design, material, material-components

Fluid

License GitHub release GitHub issues CI

Fluid is a collection of cross-platform QtQuick components for building fluid and dynamic applications, using the Material Design guidelines.

Online documentation is available at docs.liri.io.

We develop using the git flow method this means that the develop branch contains code that is being developed and might break from time to time. If you want to check out a stable version just install one of the releases or clone the master branch that has the latest released version.

Desktop

Dependencies

Qt >= 5.10.0 with at least the following modules is required:

On Linux you also need:

The following modules and their dependencies are required:

The following module must be installed, unless you want to use the copy provided as a submodule:

Build

You can perform a standalone build opening CMakeLists.txt with QtCreator, but make sure cmake is set up correctly.

You can also build from command line:

git submodule update --init
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix ..
make
make install # use sudo if necessary

Replace /path/to/prefix to your installation prefix. Default is /usr/local.

You can also append the following options to the cmake command:

  • -DFLUID_USE_SYSTEM_LCS:BOOL=ON: Use a system-wide copy of LiriCMakeShared.
  • -DFLUID_WITH_DOCUMENTATION:BOOL=OFF: Do not build the documentation.
  • -DFLUID_WITH_DEMO:BOOL=OFF: Do not build the demo application.
  • -DFLUID_WITH_QML_MODULES:BOOL=OFF: Do not build QML modules.
  • -DFLUID_INSTALL_ICONS:BOOL=OFF: Embed icons into resources.

If cmake-shared is not installed and -DFLUID_USE_SYSTEM_LCS:BOOL=ON is passed to cmake, the build will fail without finding LiriSetup.

The cmake arguments above can also be specified when building on QtCreator, as explained in this guide.

Documentation

The HTML documentation is built unless -DFLUID_WITH_DOCUMENTATION:BOOL=OFF is passed to cmake and it's installed into <prefix>/share/doc/fluid/html.

Open <prefix>/share/doc/fluid/html/index.html with a browser to read it.

Installation

You can either install system-wide or per-project installation which is essentially embedding Fluid in your project.

System-wide installations are usually performed by packagers who want to redistribute Fluid in their Linux distro.

Per-project installation is most useful for mobile developers that want to build Fluid alongside their project.

System-wide installation

We assume that your distro installs QtQuick modules in /usr/lib/qt/qml like Arch Linux does, please change the paths for your Linux distro.

The same goes for other operating systems.

From the root of the repository, run:

git submodule update --init --recursive
mkdir build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DINSTALL_QMLDIR=lib/qt/qml ..
make
sudo make install

Please note that a system-wide installation is discouraged in most cases because there's a risk to "pollute" your system with libraries not managed by a package manager.

Per-project installation

You can embed Fluid in your project and build it along your app.

We have the following examples: We have examples for qmake, qbs and cmake.

Licensing

Licensed under the terms of the Mozilla Public License version 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].