# Mobile Tab Component
 [](https://packagist.org/packages/acpl/mobile-tab) [](https://packagist.org/packages/acpl/mobile-tab) [](https://github.com/android-com-pl/mobile-tab?sponsor=1)
A [Flarum](https://flarum.org) extension. Adds a bottom tab on mobile.

### Installation
Install with composer:
```sh
composer require acpl/mobile-tab
```
### Updating
```sh
composer update acpl/mobile-tab
php flarum cache:clear
```
### Extending
You can add, modify, and delete items in the mobile tab using your own extension.
Read: [https://docs.flarum.org/extend/extending-extensions/](https://docs.flarum.org/extend/extending-extensions/)
1. Install `acpl/mobile-tab` as your extension's composer dependency or add it as an [optional dependency](https://docs.flarum.org/extend/extending-extensions/#optional-dependencies) in your `composer.json`.
2. Add `acpl-mobile-tab` to your extension's **webpack.config.js** to ensure proper bundling:
```js
const config = require("flarum-webpack-config");
module.exports = config({
useExtensions: ["acpl-mobile-tab"],
});
```
3. You can now import and use mobile tab components in your extension. Here are some **examples** of how to modify the mobile tab:
```jsx
import { components } from "@acpl-mobile-tab";
import { extend } from "flarum/common/extend";
const { MobileTab, MobileTabItem } = components;
export default () => {
// Extend the items method of MobileTab prototype
extend(MobileTab.prototype, "items", (items) => {
// Add new item
items.add(
"following",