Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spectre | 11,118 | 394 | 93 | 4 months ago | 65 | July 02, 2020 | 193 | mit | CSS | |
Spectre.css - A Lightweight, Responsive and Modern CSS Framework | ||||||||||
Flex Layout | 5,917 | 5,089 | 934 | a month ago | 41 | June 30, 2022 | 50 | mit | TypeScript | |
Provides HTML UI layout for Angular applications; using Flexbox and a Responsive API | ||||||||||
Grid | 2,059 | 134 | 72 | 4 years ago | 10 | August 06, 2019 | mit | JavaScript | ||
This package has moved and renamed | ||||||||||
Cirrus | 1,160 | 3 | 3 | 3 days ago | 16 | April 01, 2022 | 21 | mit | SCSS | |
:cloud: The SCSS framework for the modern web. | ||||||||||
Formstone | 831 | 10 | 3 | a month ago | 35 | October 01, 2021 | 6 | other | JavaScript | |
Library of modular front end components. | ||||||||||
Gridism | 672 | 2 years ago | 1 | August 26, 2015 | mit | CSS | ||||
A simple responsive CSS grid. | ||||||||||
Waffle Grid | 603 | 1 | 3 years ago | 13 | September 29, 2019 | mit | CSS | |||
An easy to use flexbox grid system. | ||||||||||
Responsive Grid Of Hexagons | 542 | 8 months ago | 3 | apache-2.0 | HTML | |||||
CSS responsive grid of hexagons | ||||||||||
React Native Responsive Grid | 342 | 5 | 3 years ago | 229 | March 18, 2020 | 1 | other | JavaScript | ||
Bringing the Web's Responsive Design to React Native | ||||||||||
React Responsive Masonry | 188 | 18 | 1 | 5 months ago | 15 | November 18, 2021 | 13 | mit | JavaScript | |
React responsive masonry component built with css flexbox |
NOTE: The Angular team no longer publishes new releases of this project. Please review this blog post for alternatives, and this article for the explanation and next steps.
Angular Flex Layout provides a sophisticated layout API using Flexbox CSS + mediaQuery. This module provides Angular developers with component layout features using a custom Layout API, mediaQuery observables, and injected DOM flexbox-2016 CSS stylings.
The Flex Layout engine intelligently automates the process of applying appropriate Flexbox CSS to browser view hierarchies. This automation also addresses many of the complexities and workarounds encountered with the traditional, manual, CSS-only application of box CSS.
The real power of Flex Layout, however, is its responsive engine. The Responsive API enables developers to easily specify different layouts, sizing, visibilities for different viewport sizes and display devices.
Start by installing the Angular Layout library from npm
npm i -s @angular/flex-layout @angular/cdk
Next, you'll need to import the Layout module in your app's module.
app.module.ts
import { FlexLayoutModule } from '@angular/flex-layout';
...
@NgModule({
...
imports: [ FlexLayoutModule ],
...
});
After that is configured, you can use the Angular Layout attributes in your HTML tags for flex layout:
<div fxLayout="row" fxLayoutAlign="space-between">
</div>
Check out all of the available options for using Angular Layout in your application.
The sources for this package are in the Flex Layout repository.
Please file issues and pull requests against that repo.
License: MIT