wanecho/mobile-tab

Fund package maintenance!
android-com-pl

Installs: 292

Dependents: 0

Suggesters: 0

Security: 0

Type:flarum-extension

2.0.4 2023-05-13 02:00 UTC

This package is not auto-updated.

Last update: 2024-04-13 06:32:12 UTC


README

License Latest Stable Version Total Downloads

A Flarum extension. Adds a bottom tab on mobile.

Imgur

Installation

Install with composer:

composer require wanecho/mobile-tab:"*"

Updating

composer update wanecho/mobile-tab:"*"
php flarum cache:clear

Extending

You can add, modify and delete items with your own extension. Read: https://docs.flarum.org/extend/extending-extensions/

Examples:

import { components } from '@acpl-mobile-tab';
import { extend } from 'flarum/common/extend';

const { MobileTab, MobileTabItem } = components;

export default () => {
  extend(MobileTab.prototype, 'items', (items) => {
    // Add new item
    items.add(
      'following',
      <MobileTabItem href={app.route('following')} icon="fas fa-star" label={app.translator.trans('my-ext.forum.my-item')} />,
      90
    );

    // Add new item using custom HTML
    items.add('my-item', <div>...This is my custom item</div>, 70);

    // Remove item
    items.remove('home');
  });
};


Links