https://linen.dev logo
Join Discord
Powered by
# flutter-devšŸ”„
  • z

    Zenith

    07/09/2021, 6:35 AM
    Okay Boss. Now, I get it.
  • i

    iamCynthiaPeter

    07/09/2021, 6:37 AM
    @Temi Ajiboye how and what do I start from?
  • a

    atanda0x

    07/09/2021, 6:37 AM
    Okay boss
  • a

    atanda0x

    07/09/2021, 6:37 AM
    You should check out the link he posted, for beginners
  • t

    Temi Ajiboye

    07/09/2021, 6:40 AM
    Usually, a lot of folks here came from WhatsApp so we have started a couple of stuff. However, you can still catch up by following the playlist I posted. We also have a portal for submitting task. If you register on https://codeclannigeria.dev/register and you enrol for the flutter track, you will see some tasks you should complete. That's how to catch up. We've not gone too far. Still basic stuff.
  • a

    atanda0x

    07/09/2021, 7:38 AM
    To submit the task, how do we go about it, cause I don't understand
  • t

    Temi Ajiboye

    07/09/2021, 7:40 AM
    The instruction to submit a task is usually in the details of the task. It usually by submitting a link to a working image of the app. So you should upload the screenshot somewhere and provide the link when submitting on the portal.
  • z

    Zenith

    07/09/2021, 9:13 AM
    Hello Bosses @everyone, I am still trying to learn Dart. So, I tried to import Dart.io on my PC according to the first video. I keep getting errors. What could be the problem?
  • u

    user

    07/09/2021, 9:13 AM
    @Zenith just gained a level!
  • t

    Temi Ajiboye

    07/09/2021, 9:16 AM
    Importing packages is not currently support on dartpad. For more details on this, check https://github.com/dart-lang/dart-pad/issues/901
  • t

    Temi Ajiboye

    07/09/2021, 9:17 AM
    Copy code
    void main() {
       printNumbers(1, 100);
    }
    void printNumbers(int start, int end) {
      var yourName = "Temitope Ajiboye";
        for (var i = start; i <= end; i++) {
          if (i % 3 == 0) {
            print('Bud');
          }
    
          if (i % 5 == 0) {
            print('Vue');
          }
          
          if (i % 3 == 0 && i % 5 == 0) {
            print('"Budvue should consider $yourName for this position"');
          }
        }
      }
    @User folks. Who can explain what this dart code does?
  • z

    Zenith

    07/09/2021, 9:20 AM
    Now, I get it. Learning is halted there then. Where best can I switch to?
  • t

    Temi Ajiboye

    07/09/2021, 9:21 AM
    Install Flutter environment on your computer.
  • s

    Shazomiii

    07/09/2021, 9:22 AM
    The code loops through 1 to 100. If the current number is divisible by 3, it prints Bud. If the current number is divisible by 5, it prints Vue. If the current number is divisible by both 3 and 5, it prints 'Budvue should consider Temitope Ajiboye for this position'
  • t

    Temi Ajiboye

    07/09/2021, 9:23 AM
    Is there an alternate way to write the printNumbers function? There are several ways of doing stuff.
  • z

    Zenith

    07/09/2021, 9:26 AM
    Thanks Boss. You showed us how to do it in the recorded intro to flutter class?
  • s

    Shazomiii

    07/09/2021, 9:27 AM
    We could use all of the normal loop statements
  • s

    Shazomiii

    07/09/2021, 9:28 AM
    For..In, forEach, while, do while
  • s

    Shazomiii

    07/09/2021, 9:28 AM
    Using for..in
  • t

    Temi Ajiboye

    07/09/2021, 9:38 AM
    Ehm yeah, basically to install flutter on your machine.
  • t

    Temi Ajiboye

    07/09/2021, 9:38 AM
    Yup.
  • z

    Zenith

    07/09/2021, 9:52 AM
    Many thanks, boss!
  • u

    user

    07/09/2021, 10:24 AM
    I Don show o
  • t

    Temi Ajiboye

    07/09/2021, 10:26 AM
    Welcome, please introduce yourself at the #862593208353816576 channel.
  • t

    Temi Ajiboye

    07/09/2021, 10:35 AM
    $run dart void main() { printNumbers(1, 100); } void printNumbers(int start, int end) { var yourName = "Temitope Ajiboye"; for (var i = start; i <= end; i++) { if (i % 3 == 0) { print('Bud'); } if (i % 5 == 0) { print('Vue'); } if (i % 3 == 0 && i % 5 == 0) { print('"Budvue should consider $yourName for this position"'); } } }
  • c

    CompileOrb

    07/09/2021, 10:35 AM
    Output was too long (more than 2000 characters or 40 lines) so I put it here: https://hastebin.com/rerumuridu
  • t

    Temi Ajiboye

    07/09/2021, 10:36 AM
    Hmm. Nice, so we can run dart codes right from Discord. Interesting.
  • p

    peterito

    07/09/2021, 2:22 PM
    finally i have been able to submit my task... i learnt a lot.....
  • t

    Temi Ajiboye

    07/09/2021, 2:26 PM
    Wonderful.
  • o

    ovuchukwu

    07/10/2021, 9:54 AM
    I don’t understand the link we are to post here. Are we supposed to upload the screenshots somewhere and copy the link or what?
12345...52Latest