react-line-flex

v0.0.1

LINE Flex Messagesin React

A comprehensive React component library for rendering LINE Flex Messages with full TypeScript support, Tailwind CSS V4 styling, and shadcn/ui integration.

Installation

shadcn add https://raw.githubusercontent.com/XuHaoJun/react-line-flex/refs/heads/main/packages/react-line-flex/public/r/react-line-flex.json

Usage

import { LfMessage, LfBubble, LfBox, LfText } from "@/components/ui/line-flex";

const Example1 = () => {
  const message = { type: "flex", altText: "Flex Message", contents: { type: "bubble", hero: { type: "image", url: "https://developers-resource.landpress.line.me/fx/img/01_1_cafe.png", size: "full", aspectRatio: "20:13", aspectMode: "cover", action: { type: "uri", uri: "https://line.me/" } }, body: { type: "box", layout: "vertical", contents: [{ type: "text", text: "Brown Cafe", weight: "bold", size: "xl" }] }, footer: { type: "box", layout: "vertical", spacing: "sm", contents: [{ type: "button", style: "link", height: "sm", action: { type: "uri", label: "CALL", uri: "https://line.me/" } }], flex: 0 } } };
  return <LfMessage {...message} />;
};

const Example2 = () => {
  return (
    <LfBubble>
      <LfBox layout="vertical">
        <LfText text="Hello, World!" layout="vertical" />
      </LfBox>
    </LfBubble>
  );
};

Component Examples

Explore 12 real-world examples of LINE Flex Messages rendered in React

Restaurant

Brown Cafe

4.0

Place

Flex Tower, 7-7-4 Midori-ku, Tokyo

Time

10:00 - 23:00

Apparel

Brown's T-shirts

¥35,800

¥75,000

Add to cart

SALE

Cony's T-shirts

¥35,800

¥75,000

Add to cart

SALE

Hotel

Brown Grand Hotel

4.0

¥62,000

¥82,000

Local Search

Brown Cafe

4.0

東京旅行

Brown&Cony's Restaurant

4.0

東京旅行

Tata

4.0

東京旅行

Real Estate

NEW

Cony Residence

3 Bedrooms, ¥35,000

Private Pool, Delivery box, Floor heating, Private Cinema

Social

brown_05 I went to the Brown&Cony cafe in Tokyo and took a picture

1,140,753 Like

TODO application

In Progress

70%

Buy milk and lettuce before class

Pending

30%

Wash my car

In Progress

100%

Buy milk and lettuce before class

Transit

FROM

Akihabara

TO

Shinjuku

Total: 1 hour

20:30

Akihabara

Walk 4min

20:34

Ochanomizu

Metro 1hr

20:40

Shinjuku

Receipt

RECEIPT

Brown Store

Flex Tower, 7-7-4 Midori-ku, Tokyo

Energy Drink

$2.99

Chewing Gum

$0.99

Bottled Water

$3.33

ITEMS

3

TOTAL

$7.31

CASH

$8.0

CHANGE

$0.69

PAYMENT ID

#743289384279

Shopping

Arm Chair, White

$49

.99

Metal Desk Lamp

$11

.99

Temporarily out of stock

Menu

Brown's Burger

$10.5

400kcl

$15.5

550kcl

Sauce, Onions, Pickles, Lettuce & Cheese

Ticket

BROWN'S ADVENTURE
IN MOVIE

4.0

Date

Monday 25, 9:00PM

Place

7 Floor, No.3

Seats

C Row, 18 Seat

You can enter the theater by using this code instead of a ticket

Code Generator

JSON Input
Generated JSX
// Result will appear here
Live Preview (based on generated code not JSON to render)
Preview will appear here