Skip to content

TechStroke

Programming Tutorials – PHP/Python/C++/Java

  • Flutter
  • C++
  • About Us

How to view large rows with many columns in mysql cli client

On July 7, 2020July 7, 2020 by vivek

It’s hard to view long column names in mysql CLI as the screen wraps them and then instead of a table spanning horizontally , half the columns are stacked over each other , making it confusing to look at . There are two ways to...

How to disable a button in Flutter.

On June 25, 2020March 31, 2021 by Siddhant Badola

To disable a Button in Flutter, we can simply give the onpressed: parameter a null value. This will disable the button. Something like this will work:- But our button will be of no use like this. Instead, a better approach is to create a helper...

How to use Hexadecimal color strings in Flutter.

On June 13, 2020June 13, 2020 by Siddhant Badola

By default we get the Colors widget in Flutter which comes with set of predefined material design colors like Grey,Red,Yellow etc. But oftentimes we require custom colors in the UI of our app. We can use the Color method which contains two constructors .fromRGBO() and...

How to reverse a list in Flutter

On June 12, 2020June 12, 2020 by Siddhant Badola

To reverse a list in Flutter, you can simply use a function in Dart called reversed. The syntax to reverse lists in Flutter is: Remember to add .toList() after reversed so that the function returns a List. Without .toList(), the function will return a Iterable....

How to navigate flutter pages without context

On June 10, 2020June 10, 2020 by Siddhant Badola

There are certain situations in flutter development when we need to navigate to another page from outside the state widget.In such cases the (BuildContext)context is not available to the programmer and this can make it difficult for the programmer to navigate to the inteded page.For...

Compiling and Linking C++ Program

On May 5, 2020July 13, 2020 by Navneet Kumar

When you write a C++ program, the very next step is to compile the program to generate an executable file. This process of generating executable file from a source code involves 3 main stages. Preprocessor The preprocessor modifies the original source code according to the...

Posts navigation

Previous 1 2

Recent Comments

    Categories

    • C++
    • Flutter
    • MySQL
    Copyright © TechStroke