Star Polygon Button
Filled Button
import 'package:flutter/material.dart';
FilledButton(
onPressed: () {},
style: const ButtonStyle(
fixedSize: WidgetStatePropertyAll(
Size.square(100),
),
shape: WidgetStatePropertyAll(
StarBorder.polygon(),
),
),
child: const Text(
'Filled Button',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 12),
),
),
Outlined Button
import 'package:flutter/material.dart';
OutlinedButton(
onPressed: () {},
style: const ButtonStyle(
fixedSize: WidgetStatePropertyAll(
Size.square(100),
),
shape: WidgetStatePropertyAll(
StarBorder.polygon(),
),
),
child: const Text(
'Outlined Button',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 12),
),
),
Elevated Button
import 'package:flutter/material.dart';
ElevatedButton(
onPressed: () {},
style: const ButtonStyle(
fixedSize: WidgetStatePropertyAll(
Size.square(100),
),
shape: WidgetStatePropertyAll(
StarBorder.polygon(),
),
),
child: const Text(
'Elevated Button',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 12),
),
),
Text Button
import 'package:flutter/material.dart';
TextButton(
onPressed: () {},
style: const ButtonStyle(
fixedSize: WidgetStatePropertyAll(
Size.square(100),
),
shape: WidgetStatePropertyAll(
StarBorder.polygon(),
),
),
child: const Text(
'Text Button',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 12),
),
),