added option to choose more emoji reactions #55
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "develop-moreEmojiReactions"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#46
@ -214,0 +283,4 @@
const SizedBox(
width: 1,
height: 25,
child: null,
width ist nullable, daher brauchst du keinen platzhalter wie 1 angeben. Parameter die Null sind können ganz weggelassen werden.
@ -214,0 +233,4 @@
const SizedBox(
width: 10,
height: 0,
child: null,
hight und child müssen nicht angegeben werden
@ -214,0 +243,4 @@
children: [
emojis.EmojiPicker(
onBackspacePressed: () {
null;
ist onBackspacePressed nullable? Falls ja den parameter nicht angeben.
Ansonsten das null statement weg und die curly braces einfach leer lassen. In diesem Fall dürfen die curlybraces auch in der selben Zeile stehen "{ }"
@ -214,0 +237,4 @@
content: SizedBox(
width: 256,
height: 270,
child: Column(
wofür existiert diese column?