Skip to content
View vijaybheda's full-sized avatar
πŸ–₯️
Working from Office
πŸ–₯️
Working from Office

Block or report vijaybheda

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
vijaybheda/README.md

Hi there 🀝🏻

Linkedin Badge

I am a Flutter App Developer, graduated from Marwadi University and currently live in Gandhinagar, Gujarat. I am a passionate who is always willing to learn and to work through the use of technologies. I really love the power that technology has in solving real-life problems.

I also usually learn and guide people who are just starting out in the programming world. I am currently working as Flutter App Developer for Android and iOS Mobile App's.

Some personal things about me:

  • πŸ”­πŸ”¨ I’m currently working as Flutter and Android Developer.

  • πŸŒ±πŸ§‘β€πŸ’» I’m currently learning Advanced Flutter Development and RxDart.

  • πŸ’«πŸ’‘ I am open to work on brilliance ideas.

  • πŸ“«πŸ“‡ You can reach me at my email.

Fun facts about me:

  • πŸ–₯οΈπŸ“± I like to surf the news about technology.
  • πŸ•ŠοΈπŸˆ My agreeable friend - animals, birds.
πŸ“Š Github Stats

Vijay's most used languages

Visitor count

Pinned Loading

  1. ReFormat.java ReFormat.java
    1
    You can find and replace with regex option also ^(?:[\t ]*(?:\r?\n|\r))+. 
    2
      It searches all empty lines in file. You need to just replace it with empty
    3
      
    4
      and then select App folder, press Ctrl + Alt + L and UNCHECK Rearrange entries and scope as All Places
  2. StringUtils.java StringUtils.java
    1
    package com.base.util.common;
    2
    
    
    3
    import android.content.Context;
    4
    import android.graphics.Typeface;
    5
    import android.text.InputFilter;
  3. DialogSingleAndMultiSelection.java DialogSingleAndMultiSelection.java
    1
    import android.app.Dialog;
    2
    import android.content.DialogInterface;
    3
    import android.os.Bundle;
    4
    
    
    5
    import com.google.android.material.floatingactionbutton.FloatingActionButton;
  4. Sort a list of objects in Flutter (... Sort a list of objects in Flutter (Dart) by property value
    1
    //taskData is list to show in listView
    2
    void _sortTaskData({bool reversed: false}) {
    3
        taskData.sort((a, b) {
    4
          return a.compareTo(b);
    5
        });
  5. GPSTracking.java GPSTracking.java
    1
    package com.vijay.backend;
    2
    
    
    3
    import android.app.AlertDialog;
    4
    import android.app.Service;
    5
    import android.content.Context;