Because this library is being currently built for Electron and NW.js, the examples and demos on this site will only work properly in Chrome.

Toolbar

Properties

Property Type Description
height number Sets the height of a component.
horizontalAlignment string Sets the horizontal alignment of the component's content
Property value "left", "center", "right"
verticalAlignment string Sets the vertical alignment of the component's content.
Property value "top", "center", "bottom"
width number Sets the width of a component.

Examples

import React, { Component } from 'react';
import { TitleBar, Toolbar, Text } from 'react-desktop/macOs';

export default class extends Component {
  render() {
    return (
      <TitleBar controls inset>
        <Toolbar height="43" horizontalAlignment="center"/>
      </TitleBar>
    );
  }
}