One tap away space to display all your thoughts for every idea
- QR Code scan your ideas
- One tap to copy
- One tap to paste
- Supports pagination
- Smooth scroll
- Hash store - To store all the hashes to your unique ideas
Changes made to bottom_sheet.dart in Original Flutter Package for text_input_sheet to coerce with keyboard input
BoxConstraints getConstraintsForChild(BoxConstraints constraints) {
return BoxConstraints(
minWidth: constraints.maxWidth,
maxWidth: constraints.maxWidth,
minHeight: 0.0,
// maxHeight: isScrollControlled
// ? constraints.maxHeight
// : constraints.maxHeight * 9.0 / 16.0,
maxHeight: constraints.maxHeight,
);
}