0.4.14 • Published 10 months ago

@mecute/design v0.4.14

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Mecute Design Module for ReactNative

peer dependency

  • react-native: 0.68.1

How to install

npm install @mecute/design

<!-- for iOS -->
cd ios && pod install

StyleButton

import React from 'react';
import { View } from "react-native";
import { StyleButton } from "@mecute/design";


function App () {
  const handleButtonPress = () => {
    console.log("Button Pressed!");
  };

  return (
    <View>
      <StyleButton
        theme="gray"
        type="enabled"
        size="xl"
        onPress={handleButtonPress}
        pressOption={["debounce", 250]}  // throttle, debounce feature with duration
        buttonStyle={{ backgroundColor: "blue" }}   // custom button style
        textStyle={{ color: "red" }}  // custom text style
      >
        TEXT HERE
      </StyleButton>
    </View>
  )
};

export default App;

Switch

import React, { useState } from 'react';
import { View } from "react-native";
import { Switch } from "@mecute/design";

function App() {
  const [checked, setChecked] = useState<boolean>(false);

  return (
    <Switch
      checked={checked}
      setChecked={setChecked}
      scale={1}
    />
  );
};

export default App;

Skeleton

Skeleton UI Pages

  • <Skeleton.Profile />
  • <Skeleton.ListView />
  • <Skeleton.DetailView />
import React, { useState } from 'react';
import { View } from "react-native";
import { Skeleton } from "@mecute/design";

function App() {
  const [isLoading, setIsLoading] = useState<boolean>(false);

  ...

  return (
    ...
    {isLoading && <Skeleton.ListView />}
  );
};

export default App;
0.4.13

11 months ago

0.4.14

10 months ago

0.4.11

11 months ago

0.4.12

11 months ago

0.4.10

12 months ago

0.4.8

12 months ago

0.4.5

12 months ago

0.4.4

12 months ago

0.4.7

12 months ago

0.4.6

12 months ago

0.4.0

12 months ago

0.4.3

12 months ago

0.4.2

12 months ago

0.3.0

1 year ago

0.1.2

1 year ago

0.2.0

1 year ago

0.1.1

1 year ago

0.1.7

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.0

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago