Skip to content
View BarryDaBee's full-sized avatar
💻
💻

Block or report BarryDaBee

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. smart_ix_test smart_ix_test Public

    Demo SmartHub application

    Dart 1

  2. real-estate-app real-estate-app Public

    Dart

  3. analog-clocks analog-clocks Public

    Analog clocks designs built with Flutter

    Dart

  4. A robust approach to handling app ty... A robust approach to handling app typography using theme_extensions for large scale apps with SOLID principles. PS: Open to questions, suggestions and improvements.
    1
    import 'package:flutter/material.dart';
    2
    
                  
    3
    abstract class AppTypography {
    4
      AppTypography({
    5
        required this.name,
  5. Flutter Hook implementation of a Sli... Flutter Hook implementation of a Slidable widget that snaps to parentWidth / 2 and automatically closes on swipe. This was created because flutter_slidable's action buttons always fill the parent height, which is not always the intended behavior.
    1
    import 'package:flutter/material.dart';
    2
    import 'package:flutter_hooks/flutter_hooks.dart';
    3
    
                  
    4
    class AppSlidable extends HookWidget {
    5
      const AppSlidable({
  6. Read More text with support for @men... Read More text with support for @mention. To be extended to accept a map of indicators and corresponding textStyles
    1
    class ReadMoreWithMention extends StatefulWidget {
    2
      final String text;
    3
      final TextStyle? textStyle;
    4
      final String readMoreText;
    5
      final TextStyle? readMoreTextStyle;