v0.3.0+2flutter_polygon
Flutter에서 다각형을 작업하는 데 도움이 되는 도구를 제공하는 플러그인입니다. 클리퍼(PolygonClipper, ClipPolygon)와 테두리(PolygonBorder)를 제공합니다
48좋아요 3.6천30일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
Flutter 다각형 모양 및 클리퍼
{"sdk":"flutter"}—아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A Flutter plugin to create views using regular polygon shapes (e.g. Pentagons and Hexagons).
Based on the polygon_clipper package by leonardocaldas.
Example1 Example2
Add this to your package's pubspec.yaml file:
dependencies:
flutter_polygon: ^0.2.0
Use the ClipPolygon widget to clip a child widget.
import 'package:flutter_polygon/flutter_polygon.dart';
ClipPolygon(
sides: 6,
borderRadius: 5.0, // Defaults to 0.0 degrees
rotate: 90.0, // Defaults to 0.0 degrees
boxShadows: [
PolygonBoxShadow(color: Colors.black, elevation: 1.0),
PolygonBoxShadow(color: Colors.grey, elevation: 5.0)
],
child: Container(color: Colors.black),
);
Use the PolygonBorder shape with your favorites widgets!
import 'package:flutter_polygon/flutter_polygon.dart';
FloatingActionButton(
shape: PolygonBorder(
sides: 6,
borderRadius: 5.0, // Defaults to 0.0 degrees
rotate: 30.0, // Defaults to 0.0 degrees
border: BorderSide(color: Colors.red, width: 2.0), // Defaults to BorderSide.none
),
onPressed: () {},
child: Icon(Icons.star),
),
Other widgets:
TextButton, ElevatedButton, ...ContainerChipIf you find an issue with this package, please open an issue on github.
If you wish to contribute to this project, I encourage you to open a pull request.
Based on the polygon_clipper package by leonardocaldas.