added launch buttons
This commit is contained in:
21
lib/widgets/editorSelector.dart
Normal file
21
lib/widgets/editorSelector.dart
Normal file
@@ -0,0 +1,21 @@
|
||||
import "package:flutter/material.dart";
|
||||
import "package:prod/models/editor.dart";
|
||||
import "package:yaru/yaru.dart";
|
||||
|
||||
class Editorselector extends StatelessWidget {
|
||||
const Editorselector(this.turns, {super.key});
|
||||
final int turns;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Row(
|
||||
children: [
|
||||
RotatedBox(
|
||||
child: Icon(Icons.rounded_corner_rounded),
|
||||
quarterTurns: this.turns,
|
||||
),
|
||||
// YaruPopupMenuButton<Editor>(child: ,),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user